查询子账户的APIKey
请求示例
get /api/v3/broker/sub-account/apiKey?timestamp={{timestamp}}&signature={{signature}}
返回示例
{
"subAccount": [{
"note": "v5",
"apiKey": "arg13sdfgs",
"permissions": "SPOT_ACCOUNT_READ,SPOT_ACCOUNT_WRITE",
"ip": "1.1.1.1,2.2.2.2",
"creatTime": 1597026383085
}, {
"note": "v5.1",
"apiKey": "arg13sdfgs",
"permissions": "read_only",
"ip": "1.1.1.1,2.2.2.2",
"creatTime": 1597026383085
}]
}
HTTP请求:
- GET
/api/v3/broker/sub-account/apiKey
请求参数:
| 参数名 | 数据类型 | 是否必须 | 说明 |
|---|---|---|---|
| subAccount | string | yes | 子账户名称 |
| timestamp | string | yes | 时间 |
| signature | string | yes | 签名 |
返回参数:
| 参数名 | 类型 | 说明 |
|---|---|---|
| note | string | 子账户备注 |
| apikey | string | API公钥 |
| permissions | string | APIKey权限 |
| ip | string | APIKey绑定的ip地址 |
| creatTime | number | 创建时间 |