Backend API
cURL
curl --request GET \ --url https://api.wacht.dev/webhooks/apps/{app_name}/deliveries \ --header 'Authorization: <api-key>'
{ "data": [ { "delivery_id": "1234567890123456789", "deployment_id": "9876543210987654321", "app_name": "my-webhook-app", "endpoint_id": "1234567890123456789", "endpoint_url": "https://example.com/webhook", "event_name": "user.created", "status": "delivered", "http_status_code": 200, "response_time_ms": 145, "attempt_number": 1, "error_message": "<string>", "filtered_reason": "<string>", "timestamp": "2024-01-15T10:30:00Z" } ], "has_more": true, "limit": 123, "offset": 123 }
Get webhook delivery history for an app
API key authentication (format: Bearer {api_key})
Webhook app name
Number of items to return
1 <= x <= 100
Number of items to skip
x >= 0
Filter by endpoint ID
Filter by event name
Filter by delivery status
Webhook deliveries
Array of items
Show child attributes
Whether there are more items
Number of items returned per page
Number of items skipped
Was this page helpful?