子帳號間資產劃轉
提示
- 只有使用主帳號 的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": {}
}