Get webhooks
Get webhook
Section titled “Get webhook”This endpoint let you get one webhook information.
GET https://api.responsly.com/v1/forms/{formid}/webhooks/{tag}
Path parameters
Section titled “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
Section titled “Get webhooks”This endpoint let you get all webhooks information on selected form.
GET https://api.responsly.com/v1/forms/{formid}/webhooks
Path parameters
Section titled “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/" } ]}