Skip to main content
GET
/
v1
/
webhooks
/
{id}
/
deliveries
List delivery attempts for a webhook endpoint
curl --request GET \
  --url https://api.example.com/v1/webhooks/{id}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "deliveries": [
    {
      "attemptNumber": 123,
      "createdAt": "<string>",
      "eventId": "evt_abc123",
      "eventType": "payout.paid",
      "id": "<string>",
      "httpStatusCode": 123,
      "responseBody": "<string>"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.zuba.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Path Parameters

id
string<uuid>
required

Webhook endpoint ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

Query Parameters

cursor
string

Cursor for pagination (ISO timestamp)

limit
number

Number of results per page (default 20, max 100)

Response

Paginated list of deliveries

deliveries
object[]
required

List of delivery records

hasMore
boolean
required

Whether more results exist

nextCursor
string

Cursor for next page