latestOpenAPI 3.1.02026-08-213914255.9 MB
715c4defcbbf
Webhooks
Replay Delivery
Re-sends the exact payload of a past delivery to the webhook's current URL and returns the delivery result. By default the replay keeps the original webhook-id, so consumers that deduplicate on it can drop events they already processed. Pass regenerate_id to re-send under a freshly generated webhook-id instead, so a deduplicating consumer processes the replay as a new message. Only available for enabled webhooks on API version v1; deliveries are retained for 30 days.
post/webhooks/{id}/deliveries/{delivery_id}/replay
Headers
Idempotency-Keystring
Example:d9105228-4a08-46b1-8b91-42fed586d383
A unique key that makes this request safe to retry. See Idempotent requests.
Request body
Example request
{
"regenerate_id": true
}Response
delivery replayed
Example response
{
"body": "OK",
"status": 200,
"success": true
}