/api/v1/webhooks
GET /webhooks — list webhooks
Returns all registered webhook subscriptions.Response
POST /webhooks — register a webhook
Registers a new webhook endpoint. Thesecret signing key is returned only in this response.
Request body
A human-readable label for this webhook.
The HTTPS URL of your receiving endpoint.
List of event types to subscribe to. See Webhook events for the full list.
Whether this webhook is active.
Response 201
GET /webhooks/ — get webhook
Returns details for a single webhook. Thesecret field is not included.
PUT /webhooks/ — update webhook
Updates a webhook’s name, URL, event subscriptions, or enabled state.DELETE /webhooks/ — delete webhook
Deletes a webhook. Returns204 No Content.
POST /webhooks//test — send test event
Sends aping event to the webhook endpoint and returns the delivery result.
GET /webhooks//deliveries — list delivery logs
Returns the last 100 delivery attempts with request and response details.Query parameters
Filter by delivery status:
success or failed.Page number.
Results per page.