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

# Retry Webhook

> Retry a failed webhook event

# Retry Webhook

Queues a failed webhook event for redelivery.

<ParamField path="eventId" type="string" required>The webhook event ID</ParamField>

## Request

```bash theme={null}
curl -X POST https://api.stablepay.global/v2/webhooks/evt_abc123/retry \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "eventId": "evt_abc123",
    "status": "queued",
    "message": "Webhook queued for retry"
  }
}
```

<Note>Only failed webhooks can be retried.</Note>
