Retrieve the delivery history for a specific webhook, including payload, status, and retry information.
Endpoint
GET /v1/accounts/:accountId/webhooks/:id/deliveries
Authentication
Bearer token required.
Path Parameters
Query Parameters
Number of deliveries to return. Maximum 100.
Number of deliveries to skip.
Response
Total number of deliveries.
Example
curl "https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/webhooks/wh_abc123/deliveries?limit=10" \
-H "Authorization: Bearer ${TOKEN}"
{
"type": "response",
"success": true,
"description": "Deliveries retrieved",
"data": {
"deliveries": [
{
"id": "del_001",
"webhook_id": "wh_abc123",
"event": "participant.joined",
"payload": "{\"event\":\"participant.joined\",\"data\":{\"userId\":\"user-001\",\"roomId\":\"c3003c93-...\"}}",
"status": "success",
"attempts": 1,
"last_attempt_at": "2026-05-29T10:06:00.000Z",
"next_retry_at": null,
"status_code": 200,
"created_at": "2026-05-29T10:06:00.000Z"
}
],
"total": 1,
"limit": 10,
"offset": 0
},
"error": null
}