List Deliveries
Returns a cursor-paginated log of an endpoint's recent deliveries.
GEThttps://api.audienceful.com/v2/webhooks/{id}/deliveries
curl --location --request GET 'https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc/deliveries' \
--header 'X-Api-Key: <your-api-key>'{
"data": [
{
"id": "dLm4vRb2xJcwYt3nKq8Zs4",
"event": "person.created",
"payload": {
"event": "person.created",
"data": {
"email": "person@example.com",
"created_at": "2026-07-04T12:00:00Z",
"extra_data": { "plan": "pro" },
"audiences": ["Newsletter"],
"tags": ["vip"],
"double_opt_in": "not_required"
}
},
"succeeded": true,
"attempts": 1,
"response_status": 200,
"response_ms": 84,
"error": "",
"created_at": "2026-07-04T12:00:00Z",
"completed_at": "2026-07-04T12:00:00Z"
}
],
"has_more": false,
"next_cursor": null
}Requires the webhooks:read scope. Returns the delivery attempts for a webhook endpoint, most recent first. Delivery log rows are retained for 30 days.
Path parameters
idstringrequired
The id of the webhook endpoint.
Query parameters
page_sizenumberdefault: 25
The number of deliveries to return per page.
cursorstring
The pagination cursor from a previous response's
next_cursor. See Pagination.Response
dataarray
The page of deliveries.
has_moreboolean
Whether more deliveries exist after this page.
next_cursorstring or null
The cursor to pass as
?cursor= to fetch the next page.Last updated: July 11, 2026