该接口用于查询用户所有的积分历史明细。
用户积分历史接口
用户积分历史明细。
请求方法:GET
是否鉴权:是
请求编码:Content-Type:application/x-www-form-urlencoded
响应编码:Content-Type:application/json;charset=UTF-8
请求地址:index/score.score/scoreHistoryList
请求参数:
参数名 | 参数类型 | 是否必填 | 参数说明 | 示例值 |
---|---|---|---|---|
page | int | 是 | 页码 | |
size | int | 是 | 每页条数 |
- 成功示例:
javascript
{
"data": {
"items": [
{
"title": "在线答题",
"score": "2.00",
"type": 1,
"win_time": 1718809092,
"is_platform": 2
}
],
"page": 1,
"size": 20,
"total": 3
},
"code": 100,
"msg": "请求成功"
}
参数名 | 参数类型 | 是否必有 | 参数说明 | 示例值 |
---|---|---|---|---|
score | String | 是 | 用户积分 | |
title | String | 是 | 积分场景名称 | |
type | int | 是 | 积分类型1增加2减少 | |
win_time | int | 是 | 积分获取时间 | |
is_platform | int | 是 | 积分获取源1用户2平台 |
- 失败示例:
javascript
{
"code": 101,
"data": [],
"msg": "未登录"
}