v1
latestOpenAPI 3.0.22026-07-146168117.0 KBWebhooks
This endpoint updates a specific webhook on a form. Please note that this feature is exclusively available as part of the Business API.
put/webhooks/{id}
Path parameters
idstring required
The ID of the webhook to get results for.
Request body
Example request
{
"target_url": "https://example.com/webhook",
"triggers": [
"submission"
],
"created_at": "2018-01-01T12:00:00Z",
"updated_at": "2018-01-01T12:00:00Z",
"account_timezone": "America/Los_Angeles",
"created_at_utc": "2018-01-01T12:00:00Z",
"updated_at_utc": "2018-01-01T12:00:00Z"
}Response
Successfully updated a single webhook with the provided values
Example response
{
"results": {
"webhook": {
"target_url": "https://example.com/webhook",
"triggers": [
"submission"
],
"created_at": "2018-01-01T12:00:00Z",
"updated_at": "2018-01-01T12:00:00Z",
"account_timezone": "America/Los_Angeles",
"created_at_utc": "2018-01-01T12:00:00Z",
"updated_at_utc": "2018-01-01T12:00:00Z"
}
}
}