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

# Reenviar Webhook (Saque)

> Reenvia o webhook de um ou mais saques

## Descricao

Reenvia as notificacoes de webhook para os saques especificados.

## Request

<ParamField body="withdrawalIds" type="string[]" required>
  Array de UUIDs dos saques. Minimo 1 ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.thalbank.com/webhooks/resend-withdrawal-event \
    -H "x-api-key: sua_api_key" \
    -H "Content-Type: application/json" \
    -d '{
      "withdrawalIds": [
        "c3d4e5f6-a7b8-9012-cdef-123456789012"
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": true
  }
  ```
</ResponseExample>
