Replay Deliveries in a Range
Re-sends the webhook's past deliveries within a time window, optionally limited to specific events or to messages whose most recent delivery attempt failed. Fire and forget: nothing about the replay is stored, and each re-send appears as a new entry in the webhook's delivery log. Each matching message is re-sent once, by default with its original webhook-id, so consumers that deduplicate are unaffected; pass regenerate_ids to re-send under freshly generated ids instead. Only available for enabled webhooks on API version v1; deliveries are retained for 30 days.
Headers
A unique key that makes this request safe to retry. See Idempotent requests.
Request body
Example request
{
"failed_only": true,
"regenerate_ids": true,
"sent_after": "2026-01-01T12:00:00.000Z"
}Response
replay queued
Example response
{
"queued": true
}Changes
Changed in 2 of the 41 revisions of this API.2
- ○
added the new optional request property
regenerate_idsnew-optional-request-property
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
endpoint added
endpoint-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○