Webhooks

Get a webhook by ID

Retrieves a single webhook endpoint by its UUID

get/v1/webhooks/{id}

Path parameters

idstring uuid required
Example:018e1234-5678-9abc-def0-123456789abc

Webhook ID (UUID)

Response

OK

idstring uuid required

Webhook ID (UUID)

urlstring required

URL that receives webhook POSTs

signing_keystring required

Key used to sign payloads (Standard Webhooks)

enabledboolean required

Whether the webhook is active

tenant_idstring

Tenant/organization identifier

event_typesWebhookEventType[]

Event types this webhook subscribes to (empty = all)

created_atstring date-time required

When the webhook was created

updated_atstring date-time required

When the webhook was last updated

disabled_reasonstring nullable

Read-only. Set by the system when the webhook was disabled (e.g. after 410 Gone or max delivery failures). Omitted when null.

disabled_atstring date-time nullable

Read-only. When the webhook was disabled. Omitted when null. Cleared when the webhook is re-enabled via PATCH.

Changes