ConsistlyAPI
Webhook endpoints

List deliveries for a webhook endpoint

Returns every delivery attempt against this endpoint, oldest first. Status moves from `pending` → `delivered` on a 2xx response, retries on non-2xx with exponential backoff (1m, 5m, 30m, 2h, 6h), and lands in `failed` after 5 attempts. Endpoints that get disabled before delivery move the rows to `abandoned`.

GET
/webhook_endpoints/{id}/deliveries
AuthorizationBearer <token>

Bearer API key in the form sk_live_…, sk_test_…, or pk_live_…. Keys are issued from the Consistly dashboard and carry product-prefixed scopes.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

curl -X GET "https://example.com/webhook_endpoints/whk_abc.../deliveries"
{  "object": "list",  "data": [    {      "id": "string",      "object": "webhook_delivery",      "organization": "string",      "endpoint": "string",      "event": "string",      "status": "pending",      "attempt_count": 0,      "last_response_status": 0,      "last_response_body": "string",      "last_error": "string",      "next_retry_at": "2019-08-24T14:15:22Z",      "created": "2019-08-24T14:15:22Z",      "completed": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "url": "string"}
{  "error": {}}