Appearance
获取作业学员参与列表
| 拥有此API的权限集 |
|---|
| 作业管理-查询 |
请求方式及url
- 请求方式:
POST - 请求头:
Content-Type:application/json - 接口地址:
https://api.xiaoe-tech.com/xe.exercise.api.user.list/1.0.0 - 频率限制:
10秒3000次
接口调试
请求参数
响应结果
暂无响应数据
请求参数
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| access_token | 是 | string | 专属token |
| exercise_book_id | 是 | string | 作业本id |
| exercise_id | 是 | string | 作业id |
| answer_user_id | 否 | string | 用户id |
请求示例
{
"access_token": "xe_xxxxx",
"exercise_book_id": "e62e0dee1ec4fe_vsKwxxx",
"exercise_id": "ex62e0deed5b497_rnUIxxx",
"answer_user_id" : "u_60dbd71c269d7_1hzRGxxx"
}返回参数
| 参数名 | 类型 | 说明 |
|---|---|---|
| code | int | 状态码 |
| msg | string | 请求状态描述信息 |
| data | array | 数据 |
data列表
| 参数名 | 类型 | 说明 |
|---|---|---|
| exercise_answer_id | string | 参与id |
| created_at | string | 创建时间 |
返回示例
{
"code": 0,
"msg": "操作成功",
"data": [
{
"exercise_answer_id": "ea_684b9aa6ce61f_AKxxx",
"created_at": "2025-06-13 11:27:34"
}
]
}