Backend API
cURL
curl --request GET \ --url https://api.wacht.dev/webhooks/apps/{app_slug}/deliveries/replay \ --header 'Authorization: <api-key>'
{ "data": [ { "task_id": "webhook-replay-batch-123-456", "app_slug": "my-webhook-app", "status": "running", "created_at": "2023-11-07T05:31:56Z", "started_at": "2023-11-07T05:31:56Z", "completed_at": "2023-11-07T05:31:56Z", "total_count": 100, "processed": 50, "replayed_count": 48, "failed_count": 2, "last_delivery_id": 123 } ], "limit": 20, "offset": 0, "has_more": false }
Get list of webhook replay tasks 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
List of replay tasks
Show child attributes
20
0
false
Was this page helpful?