Skip to content

Redeliver Webhook Event

Replay one past delivery's exact original payload to this webhook's URL. The redelivery is queued asynchronously and creates a new delivery row.

POST /v1/products/:id/webhooks/:webhookId/deliveries/:deliveryId/redeliver

Path Parameters

ParameterDescription
idProduct ID
webhookIdWebhook ID
deliveryIdThe delivery whose payload to replay

Response

Responds 202 Accepted:

json
{
  "data": {
    "queued": true
  }
}

Example

bash
curl -X POST "https://api.packedge.dev/v1/products/prd_xxx/webhooks/whk_xxx/deliveries/del_xxx/redeliver" \
  -H "Authorization: Bearer pk_your_api_key"

Notes

  • Only this subscriber receives the replay (not fanned out to other webhooks)
  • Check the delivery log shortly after for the outcome
  • Your subscriber receives the event again — make sure its handler is idempotent