获取账号列表信息详情。
GET /client/dynamics/account/accountList?pageSize=10&pageNum=1
| 参数名 | 类型 | 描述 |
| x-merchant-token | String | 商户令牌 |
| x-merchant-code | String | 商户代码 |
| Content-Type | String | application/json |
| 参数名 | 必选 | 类型 | 描述 |
| poolType | 是 | String | 必填,固定为'datacenter' |
| pageSize | 否 | Integer | 每页显示记录数 |
| pageNum | 否 | Integer | 当前页码 |
{
"total": 1,
"rows": [
{
"accountId": "384940",
"status": "active",
"poolType": "residential",
"account": "account1234",
"trafficLimit": 1000.000000,
"remarks": "",
"createTime": "2025-07-22 11:19:40"
}
],
"code": 200,
"msg": "查询成功"
}
| 参数名 | 类型 | 描述 |
| accountId | String | 账户ID |
| status | String | 状态 (active/pending) |
| poolType | String | 代理类型 (residential/datacenter/mobile) |
| account | String | 账号 |
| trafficLimit | Double | 流量限制(MB) |
| remarks | String | 备注 |
| createTime | Date | 创建时间 |