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
}
]
}Changes
Changed in 1 of the 41 revisions of this API.1
- ○
endpoint added
endpoint-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○