Skip to main content
Version: v1
Deprecation Notice

This version (v1) will be removed by 31 March 2026.

Update a Webhook

Update a webhook with the provided details.

PATCH/integrations/webhook/{hook_id}/

Headers

NameValue
AuthorizationBearer Base64Encoded(Client ID:Client Secret)
Content-Typeapplication/json

Payload

active
boolean

State of the webhook

callback_url
string

Callback URL for the webhook

object

Custom headers for the callback_url

Response

{
"success": true,
"message": "Successfully updated webhook",
"data": {
"id": 123,
"event": "call.status",
"active": true,
"callback_url": "CALLBACK_URL",
"created_at": "",
"updated_at": ""
}
}