curl --request GET \
--url https://{defaultHost}/v1/apps/{app_id}/webhooks/{id}/deliveries \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"deliveries": [
{
"id": "<string>",
"webhook_endpoint_id": "<string>",
"event_id": "<string>",
"status": "pending",
"retry_count": 0,
"signature": "t=1640995200,v1=a2114d57b48eac39b9ad189dd8316235...",
"payload": {
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"event_type": "user.created",
"app_id": "<string>",
"data": {},
"api_version": "v1"
},
"response_status": 200,
"response_body": "OK",
"failure_reason": "Connection timeout",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"current_page": 123,
"total_pages": 123,
"total_count": 123,
"per_page": 123
}
}Get delivery history for a webhook endpoint
curl --request GET \
--url https://{defaultHost}/v1/apps/{app_id}/webhooks/{id}/deliveries \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"deliveries": [
{
"id": "<string>",
"webhook_endpoint_id": "<string>",
"event_id": "<string>",
"status": "pending",
"retry_count": 0,
"signature": "t=1640995200,v1=a2114d57b48eac39b9ad189dd8316235...",
"payload": {
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"event_type": "user.created",
"app_id": "<string>",
"data": {},
"api_version": "v1"
},
"response_status": 200,
"response_body": "OK",
"failure_reason": "Connection timeout",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"current_page": 123,
"total_pages": 123,
"total_count": 123,
"per_page": 123
}
}API Secret token
User Access token
Page number for pagination
Number of items per page (max: 100)
Filter by delivery status:
pendingprocessingdeliveredfailedpending, processing, delivered, failed Was this page helpful?