POST/webhooks/resend

Resend a delivery

Queue a fresh delivery attempt for the same event and endpoint.

Required Attributes

delivery_idstringrequired

The delivery to resend

Example: "whd_9f2a1c"

Request
POST/webhooks/resend
curl --location 'https://api.ledgr.dev/v1/webhooks/resend' \
--header 'Authorization: {api_key}' \
--header 'Content-Type: application/json' \
--data '{
  "delivery_id": "whd_9f2a1c"
}'
Response

A new delivery was queued

{
  "status": "success",
  "delivery_id": "whd_new"
}