Skip to content

Get webhooks

Get webhook

This endpoint let you get one webhook information.

GET http://api.responsly.com/v1/forms/{formid}/webhooks/{tag}

Path parameters

  • form_id - Id of form
  • tag - name of webhook
{
"webhook": {
"form_id": "formid",
"tag": "eagle",
"url": "https://my-url.com/get"
}
}

Get webhooks

This endpoint let you get all webhooks information on selected form.

GET http://api.responsly.com/v1/forms/{formid}/webhooks

Path parameters

  • form_id - Id of form
{
"items": [
{
"form_id": "formid",
"tag": "eagle",
"url": "https://my-url.com/get"
},
{
"form_id": "formid",
"tag": "raven",
"url": "https://raven-url.com/get/"
}
]
}