v1
latestOpenAPI 3.0.32026-07-242644125.9 KBWebhooks
Update Webhook
Updates an existing webhook's configuration using the provided parameters. This operation allows changes to the webhook's URL, activation status, description, event subscriptions, and authentication method (JWT, custom headers, or token endpoint). Event subscriptions can be modified by providing a new 'events' array, which completely replaces the existing subscriptions. Authentication details must match the selected method's required structure.
patch/webhooks/{webhook_id}
Path parameters
webhook_idstring uuid required
The unique identifier of the webhook to update.
Request body
Example request
{
"description": "Production verification notifications",
"endpoint_url": "https://yourapi.com/webhook/handle",
"events": [
"verification.completed",
"verification.historical"
]
}Response
Webhook updated successfully.
Example response
{
"events": [
"verification.completed",
"verification.historical"
]
}