latestOpenAPI 3.1.02026-08-213914255.9 MB
715c4defcbbf
Webhooks
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
Returns the elements in the list that come after the specified cursor.
beforestring
Returns the elements in the list that come before the specified cursor.
firstinteger
Returns the first n elements from the list.
Example:42
lastinteger
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
}
]
}