### Replay a delivery

`POST /api/v1/admin/webhooks/deliveries/{id}/replay`

Re-queues a past delivery, which is how a dead one is recovered after the receiving side is fixed.

- Authentication: manager session (JWT) or API token
- Permission: `prm_notifications_manage` (Manage notification channels & templates)
- Risk: write
- Rate limit bucket: `t_egress`

#### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | integer | yes | Delivery id. |

#### Note

Your receiver will see the same event twice if the original eventually landed. Webhook receivers have to be idempotent on the event id; this endpoint is one of the reasons why.

