latestOpenAPI 3.0.12026-08-08133541.4 KB
bc197ebb855c
Webhook Subscriptions
Update Webhook
Update a webhook. You can update the endpoint url, event types that the endpoint receives, or temporarily deactivate the webhook.
put/v1/webhooks/{id}
Path parameters
idstring required
Request body
Example request
{
"url": "https://example.com/webhook",
"group_id": "wg_123",
"status": "ACTIVE"
}Response
Success
Example response
{
"id": "wsub_123",
"group_id": "wg_123",
"url": "https://example.com/webhook",
"status": "ACTIVE"
}