---
title: "Replay a webhook delivery"
method: POST
path: "/tenants/{tenantId}/webhooks/{webhookId}/deliveries/{deliveryId}/replay"
tags: ["Webhooks"]
---

# Replay a webhook delivery

`POST /tenants/{tenantId}/webhooks/{webhookId}/deliveries/{deliveryId}/replay`

Re-send a webhook delivery to your endpoint.

**Use cases:**
- Recover from transient failures after fixing your endpoint
- Test endpoint changes with real historical data
- Retry deliveries that failed due to downtime

**How it works:**
1. Fetches the original payload from the delivery
2. Generates a new timestamp and signature
3. Sends to your webhook URL immediately
4. Returns the result (does not queue for retry if it fails)

**Note:** The webhook must be enabled to replay deliveries.

## Response `200`

Replay result

- WebhookReplayResponse — Result of replaying a webhook delivery
  - `success` true, required
  - `data` object, required
    - `success` boolean, required — Whether the replay was successful (2xx response from endpoint)
    - `originalDeliveryId` string, required — ID of the original delivery that was replayed
    - `newDeliveryId` string, required — ID of the new delivery created by the replay
    - `statusCode` integer, nullable, required — HTTP status code from your endpoint
    - `duration` integer, required — Request duration in milliseconds
    - `timestamp` string, date-time, required — When the replay was executed
  - `meta` ApiMeta, required
    - `requestId` string, required — Unique request identifier for debugging and support

## Other responses

- `400` — Webhook is disabled
- `401` — Invalid or missing API key
- `404` — Resource not found
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/arkhq-io/apis/ark-email-api.md) · [All operations](https://skmtc.net/arkhq-io/apis/ark-email-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/arkhq-io/ark-email-api/revisions/98a90852ffca/schema)
