Skip to content

Create webhook

This endpoint let you create or update a webhook that will get response each time somebody will complete your form.

PUT http://api.responsly.com/v1/forms/{form_id}/webhooks/{tag}

Query parameters

  • url - Your desired url where we should send webhooks.

Path parameters

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