latestOpenAPI 3.0.12026-08-08133541.4 KB

bc197ebb855c

Webhook Subscriptions

Get Webhook

Get details of a webhook

get/v1/webhooks/{id}

Path parameters

idstring required

Response

Success

idstring required

ID of the webhook subscription.

group_idstring nullable

ID of the webhook group to which this subscription applies, if any.

urlstring required

The URL to which webhook events will be sent. Must be a valid HTTPS URL.

event_typesWebhookEventType[] required

List of event types that this webhook subscription listens to.

status'ACTIVE' | 'INACTIVE' required

The status of this webhook subscription.

Example response

{
  "id": "wsub_123",
  "group_id": "wg_123",
  "url": "https://example.com/webhook",
  "status": "ACTIVE"
}