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

# Withdrawal

[Stablecoin Account API Publisher Disclaimer](/stablecoin-account/v1.6/guide/stablecoin-account-api-publisher-disclaimer)

**Event metadata**

* **name**: `WITHDRAW`
* **types**:
  * `ramp.withdraw.pending` – withdrawal processing
  * `ramp.withdraw.success` – withdrawal successful
  * `ramp.withdraw.failed` – withdrawal failed

**Request body**

| Field       | Type   | Description             |
| ----------- | ------ | ----------------------- |
| event\_id   | string | Unique event ID         |
| event\_name | string | Event name              |
| event\_type | string | Event type              |
| source\_id  | string | Order ID                |
| version     | string | API version             |
| data        | object | Withdraw details object |

**Notification example**

```json theme={null}
{
  "version": "V1.6.0",
  "event_name": "WITHDRAW",
  "event_type": "ramp.withdraw.pending",
  "event_id": "cf1445f6-5da7-46ad-bf66-cb2fb2128b9e",
  "source_id": "f91a2959-0c72-45dd-ae95-65d6056ca25c",
  "data": {
    "actual_amount": "9",
    "amount": "10",
    "complete_time": "",
    "create_time": "2026-02-27 10:15:16 +0800 CST",
    "currency": "USDC",
    "network": "ETH",
    "network_fee": "1",
    "order_id": "f91a2959-0c72-45dd-ae95-65d6056ca25c",
    "order_status": "Pending",
    "processing_fee": "0",
    "reason": "test withdrawal",
    "short_order_id": "WD260227-RKYNIA7K",
    "transaction_type": "Withdraw",
    "txid": "",
    "withdraw_address": "0x01F67ad327647e27ecfCE22464416021fBD3B6e8"
  }
}
```
