List an endpoint’s deliveries
Regional
us.api.brault.app— follows the region selector in the top barNewest first, optionally filtered by status. The cursor is opaque; do not construct one. At most the last 10,000 deliveries of an endpoint are kept, and none older than 30 days.
Authorization
apiKey AuthorizationBearer <token>
API key from Settings → Developers
In: header
Path Parameters
webhookId*string
Query Parameters
limit?number
Range
1 <= value <= 100Default
50cursor?string
Opaque cursor from a previous response.
status?string
Value in
- "pending"
- "success"
- "failed"
- "exhausted"
- "parked"
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/webhooks/string/deliveries"{ "object": "list", "has_more": true, "next_cursor": "string", "data": [ { "object": "delivery", "id": "string", "webhook_id": "string", "event_id": "string", "event_type": "string", "status": "pending", "attempt": 1, "scheduled_at": "2019-08-24T14:15:22Z", "delivered_at": "2019-08-24T14:15:22Z", "http_status": 0, "duration_ms": 0, "error_code": "string", "response_excerpt": "string", "request_id": "string", "origin": "fanout", "replayed_from_id": "string", "created_at": "2019-08-24T14:15:22Z" } ]}