Brault Developers

List an endpoint’s deliveries

Regionalus.api.brault.appfollows the region selector in the top bar
GET
/v1/webhooks/{webhookId}/deliveries

Newest 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.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

webhookId*string

Query Parameters

limit?number
Range1 <= value <= 100
Default50
cursor?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"    }  ]}