Skip to main content
POST
/
api
/
v1
/
webhooks
/
{id}
/
deliveries
/
{deliveryId}
/
retry
Retry Delivery
curl --request POST \
  --url https://api.example.com/api/v1/webhooks/{id}/deliveries/{deliveryId}/retry

Path Parameters

id
string
required
The webhook UUID.
deliveryId
string
required
The delivery UUID from the delivery log.

Behavior

Re-dispatches the original event payload stored in the delivery log. The retry uses the webhook’s current URL and signing secret — if either was changed since the original delivery, the retry uses the updated values.

Example

curl -X POST https://hitheo.ai/api/v1/webhooks/WEBHOOK_ID/deliveries/DELIVERY_ID/retry \
  -H "Authorization: Bearer $THEO_API_KEY"

Response

{
  "retried": true,
  "delivery_id": "b5c6d7e8-..."
}