查询子账户的APIKey
HTTP请求
- GET
/api/v3/broker/sub-account/apiKey
接口权限要求: 账户信息读 / SPOT_ACCOUNT_READ
请求参数
| 参数名 | 数据类型 | 是否必须 | 说明 |
|---|---|---|---|
| subAccount | string | yes | 子账户名称 |
| timestamp | string | yes | 时间 |
| signature | string | yes | 签名 |
返回参数
| 参数名 | 类型 | 说明 |
|---|---|---|
| note | string | 子账户备注 |
| apiKey | string | API公钥 |
| permissions | string | APIKey权限 |
| ip | string | APIKey绑定的ip地址 |
| creatTime | number | 创建时间 |
响应
{
"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
}]
}