Appearance
获取练习基本信息列表
| 拥有此API的权限集 |
|---|
| 练习管理-查询 |
请求方式及url
- 请求方式:
POST - 请求头:
Content-Type:application/json - 接口地址:
https://api.xiaoe-tech.com/xe.practice.api.list.base/1.0.0 - 频率限制:
10秒3000次
接口调试
请求参数
响应结果
暂无响应数据
请求参数
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| access_token | 是 | string | 专属token |
| search_content | 是 | string | 搜索内容 |
| page_index | 是 | int | 页码 |
| page_size | 是 | int | 页大小 |
请求示例
{
"access_token": "xxxxx",
"search_content":"",
"page_index":1,
"page_size":10
}返回参数
| 参数名 | 类型 | 说明 |
|---|---|---|
| code | int | 状态码 |
| msg | string | 请求状态描述信息 |
| data | object | 当前页数 |
| data.list | array | 列表 |
| data.total | int | 总数 |
data.list考试列表
| 参数名 | 类型 | 说明 |
|---|---|---|
| app_id | string | 店铺id |
| practice_id | string | 练习id |
| practice_name | string | 练习名称 |
| created_at | string | 创建时间 |
| practice_count | int | 提交人数 |
| practice_sum | int | 提交人次 |
| resource_ids | array | 关联课程资源id列表 |
返回示例
{
"code": 0,
"msg": "操作成功",
"data": {
"list": [
{
"app_id": "appAKLWLitnxxxx",
"created_at": "2022-08-19 14:21:38",
"practice_count": 0,
"practice_id": "wb_62ff2bf2c60e2_eUhRq7Yj",
"practice_name": "新建练习-关联付费视频",
"practice_sum": 0,
"resource_ids": [
"v_62fdfd02e4b0eca59c24ac86"
]
}
],
"total": 45
}
}