v14
latestOpenAPI 3.1.02026-08-083813925.4 MBWebhooks
List deliveries
Returns a paginated list of delivery attempts for a webhook, ordered by most recent first. Includes the request payload, response body, response code, and timing for each attempt.
Required permissions:
- developer:manage_webhook
get/webhooks/{webhook_id}/deliveries
Path parameters
webhook_idstring required
The unique identifier of the webhook to list deliveries for.
Query parameters
afterstring nullable
Returns the elements in the list that come after the specified cursor.
beforestring nullable
Returns the elements in the list that come before the specified cursor.
firstinteger nullable
Returns the first n elements from the list.
Example:42
lastinteger nullable
Returns the last n elements from the list.
Example:42
Response
A successful response
Example response
{
"data": [
{
"response_code": 42,
"sent_at": "2023-12-01T05:00:00.401Z",
"total_time": 6.9
}
]
}