v93

OpenAPI 3.1.0raw.githubusercontent.com2026-08-01218121759.7 KB
Webhooks

Update outbound webhook

Updates an outbound webhook endpoint URL, name, status, or subscribed events. Changing the URL or enabling the endpoint resets stored endpoint failure state.

patch/webhooks/{id}

Path parameters

idstring required

Request body

namestring
urlstring uri
status'enabled' | 'disabled'
eventsOutboundWebhookEventType[]

Response

Updated

successboolean

Example response

{
  "webhook": {
    "id": "webhook_abc123",
    "name": "Production webhook",
    "url": "https://example.com/sequenzy/webhooks",
    "signingSecret": "whsec_...",
    "signingSecrets": [
      {
        "id": "sec_abc123",
        "prefix": "whsec_abcd12"
      }
    ]
  }
}