List delivery attempts for a tenant's webhook
GET
/v1/webhooks/{subscription_id}/deliveries
Returns delivery history with status, response codes, and error details. Supports filtering by status and date range.
Authorizations
ApiKeyAuth
Tenant-scoped API key for runtime operations (consistent with Cycles Protocol)
Type
API Key (header: X-Cycles-API-Key)
Parameters
Path Parameters
subscription_id*
Type
Requiredstring
Query Parameters
status
Type
string
Valid values
"PENDING""SUCCESS""FAILED""RETRYING"from
Type
string
Format
"date-time"to
Type
string
Format
"date-time"cursor
Type
string
limit
Type
integer
Minimum
1Maximum
100Default
50Responses
Delivery list
application/json
JSON "deliveries": [ { "delivery_id": "string", "subscription_id": "string", "event_id": "string", "event_type": "string", "status": "string", "attempted_at": "string", "completed_at": "string", "attempts": 0, "response_status": 0, "response_time_ms": 0, "error_message": "string", "next_retry_at": "string" } ], "next_cursor": "string", "has_more": true
{
}