Webhooks
Create a webhook
Creates a webhook that delivers a POST request to your endpoint whenever a subscribed event occurs. Optionally scope the webhook to specific API tokens, templates, or folders.
post/webhooks
Request body
Example request
{
"webhook": {
"name": "Test Webhook",
"url": "https://example.com/webhook",
"event_types": [
"submission.processed",
"submission.failed"
],
"headers": {
"X-Zapier-Subscription": "123"
}
}
}Response
webhook created