External Feeds
Fetch all external feeds
This endpoint can fetch all created external feeds.
get/feeds
Query parameters
searchstring
Can be used to filter records by search keyword on feed name
startDatestring date
Mandatory if endDate is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Can be maximum 30 days older than current date.
endDatestring date
Mandatory if startDate is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month.
sort'asc' | 'desc'
Sort the results in the ascending/descending order of record creation. Default order is descending if sort is not passed.
authType'basic' | 'token' | 'noAuth'
Filter the records by authType of the feed.
limitinteger
Number of documents returned per page.
offsetinteger
Index of the first document on the page.
Response
External feeds
Example response
{
"feeds": [
{
"id": "54377442-20a2-4c20-b761-d636c72de7b7",
"name": "New feed",
"url": "http://requestb.in/173lyyx1",
"username": "user",
"password": "password",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"headers": [
{
"name": "userId",
"value": "user12345"
}
],
"maxRetries": 5,
"cache": true,
"createdAt": "2022-10-06T05:03:47.053000000Z",
"modifiedAt": "2022-10-06T05:03:47.053000000Z"
}
]
}