查询虚拟子账户Apikey列表
限速规则:5次/秒/UID
描述
查询虚拟子账户Apikey列表
HTTP请求
- GET /api/v2/user/virtual-subaccount-apikey-list
请求示例
curl -X GET "https://api.bitget.com/api/v2/user/virtual-subaccount-apikey-list?subAccountUid=1" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
subAccountUid | String | 是 | 子账户UID |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1682661432874,
"data": [
{
"subAccountUid": "1",
"label": "1682396356594",
"subAccountApiKey": "xx_xxx",
"permList": [
"spot_trade",
"margin_trade",
"contract_trade"
],
"ipList": [
"127.0.0.1"
]
}
]
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
subAccountUid | String | 子账户UID |
subAccountApiKey | String | 子账户Apikey |
ipList | String | ip列表 |
permList | List | 子账户apiKey 权限spot_trade : 现货交易margin_trade : 现货杠杆交易contract_trade : 合约交易读写read :读取权限 |
label | String | 备注 |