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

# Eventos de Saque

> Notificações em tempo real para atualizações de status de pagamentos enviados

Os webhooks permitem que sua aplicação receba notificações em tempo real quando eventos acontecem na sua conta Bullring. Em vez de consultar a API, enviaremos uma requisição HTTP POST para a URL configurada.

### Saque Falhou

```json theme={null}
{

  "event": "withdrawal.status.completed",
  "data": {
    "id": "50f56c85-5d26-460b-93fe-6026e5d92428",
    "reference": "f73847df5fea4873990133bb1d0022e2",
    "account_id": "28007014-1855-4559-8da0-fdca137e97aa",
    "payment_method": {
      "type": "bank_transfer",
      "scheme": "pix",
      "network": "pix"
    },
    "net_amount": {
      "value": "99.60000000",
      "currency": "BRL"
    },
    "gross_amount": {
      "value": "100.00000000",
      "currency": "BRL"
    },
    "fee": {
      "value": "0.40000000",
      "currency": "BRL"
    },
    "status": "completed",
    "created_at": "2026-02-04T19:06:26.800Z",
    "updated_at": "2026-02-04T19:11:14.288Z",
    "beneficiary": {
      "bank_account_number": "241394112",
      "bank_account_name": "Hugo Gonzalez",
      "bank_name": "BITSO IP LTDA",
      "bank_code": "35136120"
    },
    "settlement": {
      "end_to_end_id": "E3513612020260204190600000066754",
      "estimated_at": "2026-02-04T19:11:18.243Z"
    }
  }

}
```

### Saque Concluído

```json theme={null}
{

  "event": "withdrawal.status.completed",
  "data": {
    "id": "50f56c85-5d26-460b-93fe-6026e5d92428",
    "reference": "f73847df5fea4873990133bb1d0022e2",
    "account_id": "28007014-1855-4559-8da0-fdca137e97aa",
    "payment_method": {
      "type": "bank_transfer",
      "scheme": "pix",
      "network": "pix"
    },
    "net_amount": {
      "value": "99.60000000",
      "currency": "BRL"
    },
    "gross_amount": {
      "value": "100.00000000",
      "currency": "BRL"
    },
    "fee": {
      "value": "0.40000000",
      "currency": "BRL"
    },
    "status": "completed",
    "created_at": "2026-02-04T19:06:26.800Z",
    "updated_at": "2026-02-04T19:11:14.288Z",
    "beneficiary": {
      "bank_account_number": "241394112",
      "bank_account_name": "Hugo Gonzalez",
      "bank_name": "BITSO IP LTDA",
      "bank_code": "35136120"
    },
    "settlement": {
      "end_to_end_id": "E3513612020260204190600000066754",
      "estimated_at": "2026-02-04T19:11:18.243Z"
    }
  }

}
```
