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

# Replay Event

> Trigger an immediate redelivery / replay of a past webhook event.

Manually re-queue an event for delivery to your webhook endpoint. Useful when your backend service was down or returned a 5xx error.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the webhook event to replay.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="success" type="boolean">True if re-queued.</ResponseField>
  <ResponseField name="replayed" type="boolean">Replay confirmation.</ResponseField>

  <ResponseField name="event" type="object">
    <ResponseField name="id" type="string">Event ID.</ResponseField>
    <ResponseField name="status" type="string">Updated status (`pending`).</ResponseField>
    <ResponseField name="next_attempt_at" type="string">Scheduled delivery time.</ResponseField>
  </ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.mailofly.com/api/v1/webhooks/events/evt_12345/replay \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "success": true,
      "replayed": true,
      "event": {
        "id": "evt_12345",
        "status": "pending",
        "next_attempt_at": "2026-09-11T14:10:00Z"
      }
    }
  }
  ```
</ResponseExample>


## Related topics

- [Retries and debugging](/webhooks/retries-and-debugging.md)
- [Event types](/webhooks/event-types.md)
- [List Events](/api/webhooks/list-events.md)
- [Retrieve Event](/api/webhooks/retrieve-event.md)
- [Send without a domain (Identities)](/getting-started/identities.md)
