Webhooks
Replay a webhook delivery
Re-send a webhook delivery to your endpoint.
Use cases:
- Recover from transient failures after fixing your endpoint
- Test endpoint changes with real historical data
- Retry deliveries that failed due to downtime
How it works:
- Fetches the original payload from the delivery
- Generates a new timestamp and signature
- Sends to your webhook URL immediately
- Returns the result (does not queue for retry if it fails)
Note: The webhook must be enabled to replay deliveries.
post/tenants/{tenantId}/webhooks/{webhookId}/deliveries/{deliveryId}/replay
Response
Replay result
Example response
{
"data": {
"success": true,
"originalDeliveryId": "whr_abc123def456",
"newDeliveryId": "whr_new789xyz",
"statusCode": 200,
"duration": 156,
"timestamp": "2024-01-15T14:30:00Z"
},
"meta": {
"requestId": "req_V1StGXR8_Z5jdHi6"
}
}