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

# ACCOUNT_WITHDRAWAL_INITIATED

> Fired when a withdrawal request from the program ledger is created and funds are reserved.

Fires when a withdrawal request from the program ledger is created. The requested funds are reserved in a suspense ledger while the transfer is processed.

## Event Type

```
ACCOUNT_WITHDRAWAL_INITIATED
```

## Payload

```json theme={null}
{
  "event":       "ACCOUNT_WITHDRAWAL_INITIATED",
  "eventId":     "evt_01HXY123456ABCDEF",
  "businessId":  "BUS1A2B3C4D5E6F",
  "environment": "LIVE",
  "timestamp":   "2026-05-22T15:00:00Z",
  "data": {
    "withdrawalId": "wdr_01HXYZ6666ABCDEF0000",
    "programId":    "prg_01HXYZ9876ABCDEF0000",
    "amount":       5000.00,
    "token":        "USDT",
    "network":      "TRC20",
    "toAddress":    "TXyZ1234567890abcdef1234567890abcdef12",
    "timestamp":    "2026-05-22T15:00:00Z"
  }
}
```

## Payload Fields

| Field          | Type   | Description                      |
| -------------- | ------ | -------------------------------- |
| `withdrawalId` | string | Unique withdrawal identifier     |
| `programId`    | string | The program being withdrawn from |
| `amount`       | number | Withdrawal amount (in dollars)   |
| `token`        | string | `USDT` or `USDC`                 |
| `network`      | string | `TRC20` or `ERC20`               |
| `toAddress`    | string | Destination wallet address       |
| `timestamp`    | string | ISO 8601 timestamp               |

For the full event group documentation see [Account Events](/v3.20/webhooks/events/program-events).

<RequestExample>
  ```json Webhook Payload theme={null}
  {
    "event":       "ACCOUNT_WITHDRAWAL_INITIATED",
    "eventId":     "evt_01HXY123456ABCDEF",
    "businessId":  "BUS1A2B3C4D5E6F",
    "environment": "LIVE",
    "timestamp":   "2026-05-22T15:00:00Z",
    "data": {
      "withdrawalId": "wdr_01HXYZ6666ABCDEF0000",
      "programId":    "prg_01HXYZ9876ABCDEF0000",
      "amount":       5000.00,
      "token":        "USDT",
      "network":      "TRC20",
      "toAddress":    "TXyZ1234567890abcdef1234567890abcdef12",
      "timestamp":    "2026-05-22T15:00:00Z"
    }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {}
  ```
</ResponseExample>


## OpenAPI

````yaml v3.20/openapi.json webhook ACCOUNT_WITHDRAWAL_INITIATED
openapi: 3.1.0
info:
  title: FYATU CaaS API v3.20
  description: >-
    FYATU Cards-as-a-Service API â€” API key authentication, Cardholder
    lifecycle, Card issuance, Transactions, Webhooks, and Programs.
  version: 3.20.0
  contact:
    name: FYATU Support
    url: https://fyatu.com
    email: support@fyatu.com
servers:
  - url: https://api.fyatu.com/api/v3.20
    description: >-
      FYATU CaaS API â€” the environment (LIVE or SANDBOX) is determined by the
      API key, not the URL
security:
  - BearerAuth: []
tags:
  - name: Meta
    description: Liveness, account info, and supported event types
  - name: Account
    description: Account-level balance and funding status
  - name: Programs
    description: Read card program configuration
  - name: Cardholders
    description: Create and manage cardholder profiles
  - name: Cards
    description: Issue, fund, freeze, and terminate virtual cards
  - name: Transactions
    description: Read-only card transaction history
  - name: Webhooks
    description: Manage webhook endpoints for real-time event delivery
  - name: Products
    description: Read card product configurations
paths: {}
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from the FYATU CaaS portal. Pass as `Authorization: Bearer
        <key>`.

````