> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fortary.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Redeliver

<Info>
  **Pre-release** — contact your Fortary account team for access.
</Info>

<Warning>
  **Illustrative reference.** These examples show the shape of the API and are provided for early evaluation while it is still being finalized. Field names and response details may change before the API is released. A complete reference, generated directly from the live API, will replace these examples once it is available.
</Warning>

Redelivers a delivery's event to its webhook. Requires the `webhook:manage` scope.

A redelivery is a **fresh delivery**: new delivery id, attempt counter restarted, a full new [retry budget](/api/reference/webhooks/delivery-and-retries), signed with the webhook's **current** secret. The event body is byte-identical to the original, so your [deduplication on the event `id`](/api/reference/webhooks/delivery-and-retries#handling-deliveries-reliably) applies unchanged. The webhook must be enabled — a redelivery to a disabled or deleted webhook is cancelled at its first attempt.

## Request

```bash theme={null}
curl -X POST https://customer-api.fortary.io/v1/webhook-deliveries/del_5c8a1f3e9b/redeliver \
  -H "Authorization: Bearer fort_..."
```

## Response

```json theme={null}
{
  "deliveryId": "del_8e2b6d4a1f"
}
```

* **`deliveryId`** — the new delivery. Track it via [List webhook deliveries](/api/reference/webhooks/list-webhook-deliveries); its `replayedFromDeliveryId` points back to the original.

Errors follow the standard [error envelope](/api/concepts/errors).
