> ## 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**：`TRANSFER`
* **types**：
  * `ramp.transfer.submitted` – 转账请求已提交
  * `ramp.transfer.pending` – 转账进行中
  * `ramp.transfer.failed` – 转账失败
  * `ramp.transfer.success` – 转账成功
  * `ramp.transfer.submitted.failed` – 转账提交失败

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

**通知示例**

* 结构与 `Retrieve Transfer` API响应一致。

```json theme={null}
{
  "version": "V1.6.0",
  "event_name": "TRANSFER",
  "event_type": "ramp.transfer.pending",
  "event_id": "0063eaf2-5a4b-4b50-879c-c3f4c075c858",
  "source_id": "10489b8c-3723-48c2-8abe-fa1cce5a1fc2",
  "data": {
    "amount": "10",
    "complete_time": "",
    "create_time": "2026-02-27 10:20:55 +0800 CST",
    "currency": "USD",
    "fee": "0",
    "order_id": "10489b8c-3723-48c2-8abe-fa1cce5a1fc2",
    "order_status": "Pending",
    "reason": "test-transfer-out",
    "short_order_id": "TO260227-AQQHJJSD",
    "transaction_type": "Transfer Out"
  }
}
```
