> ## 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.

# 提现

[稳定币账户API发布者免责声明](/zh/stablecoin-account/v1.6/guide/stablecoin-account-api-publisher-disclaimer)

**事件元数据**

* **name**：`WITHDRAW`
* **types**：
  * `ramp.withdraw.pending` – 提现处理中
  * `ramp.withdraw.success` – 提现成功
  * `ramp.withdraw.failed` – 提现失败

**请求体**

| 字段          | 类型     | 描述     |
| ----------- | ------ | ------ |
| event\_id   | string | 事件唯一ID |
| event\_name | string | 事件名称   |
| event\_type | string | 事件类型   |
| source\_id  | string | 订单ID   |
| version     | string | API版本  |
| data        | object | 提现详情对象 |

**通知示例**

```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"
  }
}
```
