# 批量查询用户交易次数
# 调用方式: GET
# 接口地址:
https://api.freelog.com/v2/accounts/admin/individualAccounts/list
1
# url传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
userIds | 必选 | string | 用户ID,多个用逗号分隔.数量为1-100个之间 |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
accountId | string | 账户ID |
accountName | string | 账户名称 |
ownerId | string | 账户所有者ID |
ownerName | string | 账户所属者名称 |
ownerUserId | int | 账户所属者用户ID |
balance | string | 余额 |
freezeBalance | string | 冻结的金额 |
accountName | string | 账户名称 |
status | int | 状态 0:未激活 1:正常 2:冻结 |
updateDate | datetime | 账户数据最后更新时间 |
# 返回示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": [{
"accountId": "233197953822445",
"accountName": "chtes",
"accountType": 1,
"ownerId": "50022",
"ownerName": "chtes",
"ownerUserId": 50022,
"balance": "4901.00",
"freezeBalance": "0.00",
"status": 1,
"createDate": "2021-05-07T09:11:08.769Z",
"updateDate": "2022-02-28T03:00:04.000Z"
}, {
"accountId": "233175141394829",
"accountName": "12345676789",
"accountType": 1,
"ownerId": "50028",
"ownerName": "12345676789",
"ownerUserId": 50028,
"balance": "51.00",
"freezeBalance": "0.00",
"status": 1,
"createDate": "2021-04-29T08:17:43.623Z",
"updateDate": "2022-03-10T06:31:07.000Z"
}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
← 批量查询用户交易次数 分页查询账户交易记录 →