批量获取用户积分列表
POST
https://api.xiaoe-tech.com/xe.account.info.batch/1.0.0
拥有此API的权限集 |
---|
营销码券管理-码券操作 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.xiaoe-tech.com/xe.account.info.batch/1.0.0' \
--header 'Content-Type: application/json' \
--data-raw '{
"access_token": "xe_xxxxx",
"create_time_start": "2020-08-13 00:00:00",
"create_time_end": "2020-08-20 00:00:00",
"user_ids": [
"user_id_1",
"user_id_2",
"user_id_3"
],
"sort_rule": 11,
"page_size": "10",
"page": "1"
}'
响应示例响应示例
{
"code": 0,
"msg": "Success",
"data": {
"list": [
{
"id": 5,
"app_id": "app_id_xxxx",
"user_id": "xxxx_1",
"total_balance": 0,
"balance": 300,
"freeze_balance": 0,
"created_at": "2020-08-20 16:01:52"
},
{
"id": 6,
"app_id": "app_id_xxxx",
"user_id": "xxxx_2",
"total_balance": 0,
"balance": 300,
"freeze_balance": 0,
"created_at": "2020-08-20 16:01:52"
}
],
"page": {
"current_page": 3,
"last_page": 4,
"page_size": 2,
"total": 7
}
}
}
请求参数
Body 参数application/json
返回响应
修改于 2022-03-31 08:57:31