v1
latestOpenAPI 3.0.32026-07-26214048.5 KBSender
Retry a webhook delivery
Replays a webhook delivery using its original frozen payload.
- Synchronous (?sync=true): the payload is re-sent immediately and the HTTP result is returned inline (200).
- Asynchronous (default): a new pending delivery is queued for the retry worker and the new delivery ID is returned (202).
Returns 404 if the delivery belongs to another sender.
post/sender/webhooks/{id}/retry
Path parameters
idstring uuid required
Query parameters
syncboolean
When true, replay immediately and return the HTTP result inline.
Response
Synchronous retry result
Example response
{
"data": {
"httpStatusCode": 200
}
}