Recent delivery attempts across every endpoint on the authenticated organization, ordered most-recent first. Each row is a single attempt — replays produce a new row rather than mutating the prior one. Filter by endpoint, lifecycle status, event type, and a created_at date range. Page size is fixed at 50.
Documentation Index
Fetch the complete documentation index at: https://docs.closient.com/llms.txt
Use this file to discover all available pages before exploring further.
Filter deliveries down to a single webhook endpoint by UUID. Omit to include deliveries across every endpoint on the authenticated organization.
Filter by delivery lifecycle state. dead_letter returns deliveries that exhausted their retry budget and need manual replay; rate_limited returns the 429-bucket separately from genuine failed retries.
pending, delivered, failed, rate_limited, dead_letter Filter to a single event-type string (exact match, e.g. offer.updated). Wildcards are not supported — issue one request per event type.
100Inclusive lower bound on the delivery's created_at (ISO 8601 timestamp).
Inclusive upper bound on the delivery's created_at (ISO 8601 timestamp).
Page number (1-indexed).
x >= 1Number of items per page (max 100).
1 <= x <= 100OK
Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.
Pagination envelope describing position within the full result set.
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}