查询动态子账号列表。
GET /client/dynamics/account/list
| 参数名 | 必选 | 类型 | 说明 |
| x-merchant-token | 是 | string | 商户访问令牌 |
| x-merchant-code | 是 | string | 商户编码 |
| 参数名 | 必选 | 类型 | 说明 |
| pageNum | 否 | Integer | 页码 |
| pageSize | 否 | Integer | 每页数量 |
| account | 否 | String | 账号关键字 |
| status | 否 | String | 状态 |
{
"total": 1,
"rows": [
{
"accountId": "384940",
"account": "account1234",
"status": "active",
"poolType": "standard",
"trafficLimit": 1000,
"remarks": null,
"createTime": "2025-07-22 11:19:40"
}
],
"code": 200,
"msg": "查询成功"
}
| 参数名 | 类型 | 描述 |
| total | Long | 总记录数 |
| rows | Array | 当前页子账号列表 |
| code | Integer | 业务状态码 |
| msg | String | 提示信息 |
| rows[].accountId | String | 子账号在平台上的 ID(部分接口入参使用) |
| rows[].account | String | 子账号登录名 |
| rows[].status | String | 状态 |
| rows[].poolType | String | 池类型 |
| rows[].trafficLimit | Number | 分配流量上限(GB) |
| rows[].remarks | String | 备注(可能为 null) |
| rows[].createTime | String | 创建时间 |