Webhooks
Update an existing webhook
patch/webhooks/{webhook_id}
Path parameters
webhook_idstring uuid required
The Webhook ID.
Request body
Example request
{
"endpoint": "https://webhook.example.com/new-handler",
"events": [
"email.sent",
"email.delivered"
],
"status": "enabled"
}Response
OK
Example response
{
"object": "webhook",
"id": "479e3145-dd38-476b-932c-529ceb705947"
}