List webhook deliveries
List webhook deliveries
GET
https://<your_gateway_host>/api/webhook-deliveries
This endpoint allows you to get all webhook event deliveries associated with your account.
Path Parameters
All path parameters are optional.
page
number
Offset of the results.
limit
number
Size of the page.
webhook_ids
UUID(s)
ID(s) of the webhook endpoint.
webhook_event_ids
UUID(s)
ID(s) of the webhook event.
event_types
string(s)
Event types.
response_statuses
string(s)
Response status types. Options are: "2xx", "3xx", "4xx", and "5xx".
date_duration
integer
Duration in seconds (before current time) to retrieve recent deliveries.
date[from]
ISO date string
Start date for event delivery date range. Ignored if date_duration is passed.
date[to]
ISO date string
End date for event delivery date range. Ignored if date_duration is passed.
Response
meta.total
integer
Total number of results.
meta.current_page
integer
Current page of results.
meta.total_pages
integer
Total pages of results.
data[i].id
UUID
ID of this webhook event delivery.
data[i].created_at
ISO date string
Datetime of the delivery.
data[i].webhook_id
UUID
ID of the webhook endpoint.
data[i].webhook_event_id
UUID
ID of the webhook event.
data[i].event_type
string
Event type from the webhook event.
data[i].response_status
integer
Response status from the webhook endpoint. e.g. 200, 403, 500.
data[i].url
string
URL of the webhook endpont at the time of delivery. This value is preserved even if the webhook endpoint is updated later.
data[i].payload
JSON
Payload of the webhook event.
Last updated