APIReferenceWebhooks
List deliveries
Every delivery attempt in the workspace, newest first, across all webhooks.
Authorization
apiKey AuthorizationBearer <token>
An API key from Settings, Developers: Authorization: Bearer kc_live_...
In: header
Query Parameters
limit?integer
Items per page, 1 to 100.
Range
1 <= value <= 100Default
50cursor?string
The next_cursor from the previous page. Omit for the first page.
status?string
Only deliveries in this state.
Value in
- "pending"
- "delivered"
- "failed"
Response Body
application/json
curl -X GET "https://example.com/webhooks/deliveries"{ "data": [ { "id": "string", "webhookId": "string", "eventType": "string", "eventId": "string", "url": "http://example.com", "status": "pending", "attempts": 0, "lastStatus": 0, "lastError": "string", "nextRetryAt": "2019-08-24T14:15:22Z", "deliveredAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" } ], "next_cursor": "string"}