获取子账号 APIKEY 列表
提示
- 只有使用 主账号 的 ACCESS ID 才可以访问该接口
HTTP 请求
GET /account/subs/api
请求参数
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
sub_user_name | true | string | 子账号用户名 |
page | false | int | 分页页数。默认页数为 1 |
limit | false | int | 分页数量。默认数量为 10 |
请求响应
参数名 | 类型 | 说明 |
---|---|---|
api_id | int | API KEY 的唯一 ID。 |
created_at | int | 数据创建时间 |
access_id | string | 密钥对的 access_id |
secret_key | string | 密钥对的 secret_key |
ip_whitelist | []string | API KEY 绑定的 IP 白名单。 |
trade_enabled | bool | API KEY 是否有交易权限。 |
withdraw_enabled | bool | API KEY 是否有提现权限。 |
is_expired | bool | API KEY 是否过已经过期。
|
expires_at | int | API KEY 的过期时间。
|
remark | string | API KEY 备注 |
请求示例
GET
/account/subs/api?sub_user_name=sub2&page=1&limit=2
响应示例
{
"code": 0,
"data": [
{
"api_id": 554,
"created_at": 1642145331234,
"access_id": "xxxxxxxxxx",
"secret_key": "xxxxxx",
"ip_whitelist": [
"1.1.1.1"
],
"trade_enabled": true,
"withdraw_enabled": false,
"is_expired": false,
"expires_at": 0,
"remark": "spot market maker"
},
],
"pagination": {
"total": 1,
"has_next": false
},
"message": "OK"
}