curl --request GET \
--url http://127.0.0.1:8787/v1/webhooks/deliveries \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"event_id": "<string>",
"webhook_endpoint_id": "<string>",
"webhook_encryption_key_id": "<string>",
"status": "pending",
"attempt_count": 123,
"next_attempt_at": "<string>",
"last_status_code": 123,
"last_attempt_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"error": {},
"pagination": {
"limit": 10,
"has_more": false,
"next_cursor": null
}
}curl --request GET \
--url http://127.0.0.1:8787/v1/webhooks/deliveries \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"event_id": "<string>",
"webhook_endpoint_id": "<string>",
"webhook_encryption_key_id": "<string>",
"status": "pending",
"attempt_count": 123,
"next_attempt_at": "<string>",
"last_status_code": 123,
"last_attempt_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"error": {},
"pagination": {
"limit": 10,
"has_more": false,
"next_cursor": null
}
}Documentation Index
Fetch the complete documentation index at: https://docs.kayle.id/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter webhook deliveries by status.
pending, delivering, succeeded, failed Filter webhook deliveries by webhook endpoint ID.
Filter webhook deliveries by event ID.
Maximum number of webhook deliveries to return. Defaults to 10 if not specified.
1 <= x <= 100Cursor of the last item from the previous page. When provided, the next page of results will be returned.