子账号间资产划转
提示
- 只有使用 主账号 的 ACCESS ID 才可以访问该接口
- 子账号间的划转只允许现货到现货
HTTP 请求
POST /account/subs/transfer
请求参数
信息
- from_user_name 和 to_user_name 至少提供一个
- 如果未提供 from_user_name,默认是从主账号转出
- 如果未提供 to_user_name,默认是转入主账号
- 如果两个子账户之间互转,则只允许从
现货账户
转入到现货账户
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
from_account_type | true | string | 转出账户类型。
|
to_account_type | true | string | 转入账户类型。
|
from_user_name | false | string | 转出子账号用户名。 |
to_user_name | false | string | 转入子账号用户名。 |
ccy | true | string | 币种名称 |
amount | true | string | 转账数量 |
请求响应
None
请求示例
{
"from_user_name": "sub1",
"to_user_name": "sub2",
"from_account_type": "SPOT",
"to_account_type": "SPOT",
"ccy": "USDT",
"amount": "1"
}
响应示例
{
"code": 0,
"message": "OK",
"data": {}
}