- List configured webhook destinations
- Create a webhook destination
- Delete a webhook destination
- Subscribe to one or more webhook event types
Destination URL
Your destination URL should:- Be reachable over HTTPS
- Return a successful
2xxresponse after receiving an event - Validate incoming payloads before updating internal systems
- Process events idempotently, since delivery retries can send the same event more than once
Event types
View webhook event types
See the event names you can include in the
events array when creating a webhook.Manage webhooks
| Method | Path | Description |
|---|---|---|
GET | /webhooks | List all webhooks. |
POST | /webhooks | Create a webhook. |
DELETE | /webhooks/{id} | Delete a webhook. |
See the endpoint reference for the request and response fields supported by webhook operations.

