Get API key
Authenticated all requests require Authorization: Bearer mk_test_…Learn more
API ReferenceWebhooksRe-send a previously-failed webhook delivery

Re-send a previously-failed webhook delivery

POST/api/v1/webhooks/{webhook_id}/deliveries/{delivery_id}/redeliver

Re-fires the ORIGINAL event_id + event_type + payload to the endpoint and returns the NEW delivery record. The stable event_id lets a well-behaved receiver dedupe this redeliver against the original attempt. Manual debug action (sibling to test-fire); Idempotency-Key not required.

Parameters

webhook_id*
stringpath
delivery_id*
stringpath

Responses

Success body
{
  "status": 200,
  "message": "OK",
  "data": {
    "attempt_count": 0,
    "completed_at": null,
    "created_at": "2026-05-28T07:44:23.908Z",
    "event_id": "8eced096-51f4-4e1d-9b45-71fc6a89c020",
    "event_type": "shipment.created",
    "id": "IM-2026-0528-9ZNCP3-1",
    "response": null,
    "state": "pending",
    "webhook_endpoint_id": "<webhook_endpoint_id>"
  }
}

Returned object

FieldTypeSample
statusnumber200
messagestringOK
dataobject{9 keys}