Skip to main content
GET
/
integrations
/
api
/
v1
/
webhooks
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://www.closient.com/integrations/api/v1/webhooks/deliveries/ \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "endpoint_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event_id": "<string>",
      "event_type": "<string>",
      "status": "pending",
      "created_at": "2023-11-07T05:31:56Z",
      "http_status_code": 349,
      "response_body": "",
      "attempts": 0,
      "last_attempted_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 2,
    "page_size": 2,
    "total_count": 1,
    "total_pages": 2,
    "has_next": true,
    "has_previous": true
  }
}

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.

Authorizations

X-API-Key
string
header
required

Query Parameters

endpoint_id
string | null

Filter deliveries down to a single webhook endpoint by UUID. Omit to include deliveries across every endpoint on the authenticated organization.

status
enum<string> | null

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.

Available options:
pending,
delivered,
failed,
rate_limited,
dead_letter
event_type
string | null

Filter to a single event-type string (exact match, e.g. offer.updated). Wildcards are not supported — issue one request per event type.

Maximum string length: 100
created_after
string | null

Inclusive lower bound on the delivery's created_at (ISO 8601 timestamp).

created_before
string | null

Inclusive upper bound on the delivery's created_at (ISO 8601 timestamp).

page
integer
default:1

Page number (1-indexed).

Required range: x >= 1
page_size
integer
default:25

Number of items per page (max 100).

Required range: 1 <= x <= 100

Response

200 - application/json

OK

data
DeliveryResponseSchema · object[]
required

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
PaginationMeta · object
required

Pagination envelope describing position within the full result set.

Example:
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}