External Feeds
Create an external feed
This endpoint will create an external feed.
post/feeds
Request body
Example request
{
"name": "New feed",
"url": "http://requestb.in/173lyyx1",
"username": "user",
"password": "password",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"headers": [
{
"name": "header1",
"value": "value1"
},
{
"name": "header2",
"value": "value2"
}
],
"maxRetries": 5,
"cache": true
}Response
successfully created
Example response
{
"id": "23befbae-1505-47a8-bd27-e30ef739f32c"
}