Webhooks API
Create and manage webhook endpoints for event delivery.
Webhooks deliver payment and system events to your server via HTTP POST.
List Webhooks
GET /api/projects/:projectId/webhooks
Create Webhook
POST /api/projects/:projectId/webhooks
| Field | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Your webhook endpoint URL |
eventTypes | string[] | Yes | Events to subscribe to |
Update Webhook
PATCH /api/projects/:projectId/webhooks/:webhookId
Delete Webhook
DELETE /api/projects/:projectId/webhooks/:webhookId
Webhook Deliveries
GET /api/projects/:projectId/webhooks/:webhookId/deliveries
Returns delivery history including status codes, response times, and retry counts.