Skip to content

Get webhooks

This endpoint let you get one webhook information.

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

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

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

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

  • 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/"
}
]
}