Returns a paginated list of webhook delivery attempts for a given subscription. Use this to monitor delivery success/failure and debug webhook integrations.
Path Parameters
Query Parameters
Number of deliveries to return (max 100)
Number of items to skip for pagination
Filter deliveries after this date (format: YYYY-MM-DD)
Filter deliveries before this date (format: YYYY-MM-DD)
Examples
curl -X GET "https://app.replyify.ai/api/webhook-subscriptions/sub_123/deliveries?limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
Response Example
{
"data": [
{
"id": "uuid",
"subscription_id": "uuid",
"event_type": "reply.received",
"payload": { "event": "reply.received", "data": {} },
"status_code": 200,
"response_body": "OK",
"status": "delivered",
"attempts": 1,
"delivered_at": "2025-01-27T12:00:01Z",
"created_at": "2025-01-27T12:00:00Z"
}
],
"total": 42,
"limit": 10,
"offset": 0
}