获取营期下用户的学习情况
拥有此API的权限集 |
---|
学习数据-查询 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.camp.user_progress/1.0.0
- 频率限制:
10秒3000次
备注:
数据是准实时的,4~5分钟延迟
学习时长类指标受设备限制不包含以下播放场景:息屏播放、后台播放、投屏播放、悬浮窗播放
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 | 备注(示例) |
---|---|---|---|---|
access_token | 是 | string | 专属token | ... |
term_id | 是 | string | 营期ID | ... |
user_ids | 否 | array | 用户ID | ... |
请求示例
{
"access_token" : "xxxxxxxx",
"term_id" : "term_xxxxx",
"user_ids" : [
"u_xx",
"u_xxx"
]
}
返回参数
参数名 | 类型 | 说明 | 备注(示例) |
---|---|---|---|
code | int | 错误码 | 0 |
msg | string | 错误描述 | ok |
data | Object | 返回值 | ... |
返回数据data
参数名 | 类型 | 说明 |
---|---|---|
id | int | 自增id |
app_id | string | 应用id |
camp_id | string | 训练营id |
term_id | string | 营期id |
user_id | string | 用户id |
user_nickname | string | 学员昵称 |
task_complete_num | int | 任务完成数 |
resource_complete_num | int | 课程完成数 |
exam_complete_num | int | 考试完成数 |
exam_sum_score | int | 考试总分 |
clock_complete_num | int | 打卡完成数 |
user_join_time | string | 用户加入营期的时间 |
term_complete_time | string | 营期完成时间 |
task_spend_total_time | int | 学习时长单位秒 |
task_sum_progress | int | 课程总进度:所有进度之和 |
created_at | string | 创建时间 |
updated_at | string | 更新时间,有修改自动更新 |
返回示例
{
"code": 0,
"msg": "success",
"data": [
{
"id": xxx,
"app_id": "appxxxx",
"camp_id": "camp_xxxx",
"term_id": "term_xxx",
"user_id": "u_xxxx",
"user_nickname": "云涛一叶",
"task_complete_num": 0,
"resource_complete_num": 0,
"exam_complete_num": 0,
"exam_sum_score": 0,
"clock_complete_num": 0,
"user_join_time": "2021-08-11 11:33:34",
"term_complete_time": "0000-00-00 00:00:00",
"task_spend_total_time": 0,
"task_sum_progress": 0,
"created_at": "2021-08-11 11:33:34",
"updated_at": "2021-08-11 11:33:34"
}
]
}