获取作业详情
拥有此API的权限集 |
---|
作业管理-查询 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.exercise.api.info/1.0.0
- 频率限制:
10秒3000次
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 专属token |
exercise_book_id | 是 | string | 作业本id |
exercise_id | 是 | string | 作业id |
请求示例
{
"access_token": "xe_xxxxx",
"exercise_book_id": "e62e0dee1ec4fe_vsKwcvpz",
"exercise_id": "ex62e0deed5b497_rnUIBBc5"
}
返回参数
参数名 | 类型 | 说明 |
---|---|---|
code | int | 状态码 |
msg | string | 请求状态描述信息 |
data | object | 数据 |
data.exercise_id | string | 作业id |
data.exercise_name | string | 作业名称 |
data.exercise_book_id | string | 作业本id |
data.exercise_book_name | string | 作业本名称 |
data.commit_count | string | 作业已提交人数 |
data.created_at | string | 创建时间 |
data.review_count | string | 作业已点评人数 |
data.type | string | 作业类型,0:手动布置 1:题库布置 |
data.total_count | string | 作业应提交人数 ,’--‘代表空 |
data.question_list | array | 题目列表 |
question_list
题目列表
参数名 | 类型 | 说明 |
---|---|---|
app_id | string | 店铺id |
id | string | 作业题目id |
bank_question_id | string | 题库题目id |
content | string | 题目内容 |
describ | string | 题目内容 ,不包含html标签 |
audio_urls | string | 题目音频 |
type | string | 题型 ,0单选,1多选,2简答,3判断,4填空,5不定项,6材料题 ,type=6时,子题信息从child_info取 |
correct_answer | string | 正确答案,(材料题为空,选项类题和填空为数组,判断【1为‘正确’】和简答为字符串),若为选择题,正确答案的文本从optionList的content取,关系:correct_answer.value = option_list.id |
analysis | string | 题目解析 |
is_material_question | string | 是否材料子题 |
option_list | array | 选项列表 |
option_list
选项列表
参数名 | 类型 | 说明 |
---|---|---|
app_id | string | 店铺id |
question_id | string | 题目id |
id | string | 选项id |
content | string | 题目内容 |
describ | string | 题目内容 ,不包含html标签 |
state | string | 是否删除,0-正常,2-删除 |
created_at | string | 创建时间 |
updated_at | string | 更新时间 |
answerType | string | 是否是正确选项(多选题存在多个),1-错误选项,0-正确选项 |
返回示例
{
"code": 0,
"msg": "操作成功",
"data": {
"audio_urls": [
{
"audio_id": "eezrfplc7tmq",
"audio_length": 182,
"audio_title": "test-sky-语音回放",
"audio_url": "https://wechatapppro-125252xxxxx.cossh.myqcloud.com/appAKLWLitnxxxx0b7347716342bdb511985079f03da05e.mp3?1660729925",
"id": "eezrfplc7tmq"
}
],
"commit_count": 2,
"content": "第三方",
"created_at": "2022-08-24 10:56:30",
"exercise_book_id": "e630582dac39c2_t8cQMsJw",
"exercise_book_name": "看看新作业",
"exercise_id": "ex6305935ed54e5_jSLd6PAz",
"exercise_name": "未命名作业",
"img_compressed_urls": [
"https://wechatapppro-125252xxxxx.file.myqcloud.com/appAKLWLitnxxxx/image/b_u_5b2225aa46488_oGKN7IvA/l763e3fq0pib.png"
],
"img_urls": [
"https://wechatapppro-125252xxxxx.file.myqcloud.com/appAKLWLitnxxxx/image/b_u_5b2225aa46488_oGKN7IvA/l763e3fq0pib.png"
],
"question_list": [
{
"analysis": "",
"app_id": "appAKLWLitnxxxx",
"audio_urls": [],
"bank_question_id": "qs_62e64c633787f_E4LkP824",
"content": "<p>材料题 得到的</p>",
"correct_answer": "",
"describ": "材料题 得到的\n",
"id": "eq_630ca68446caf_X28BGfbO",
"is_material_question": 0,
"option_list": [],
"type": 6
},
{
"analysis": "",
"app_id": "appAKLWLitnxxxx",
"audio_urls": [],
"bank_question_id": "qs_624d0c5524dbe_cnsJnnfd",
"content": "<p>哈哈哈哈哈</p>",
"correct_answer": "",
"describ": "哈哈哈哈哈\n",
"id": "eq_630ca684429b3_qwMTbj0u",
"is_material_question": 0,
"option_list": [],
"type": 6
}
],
"review_count": 1,
"total_count": "--",
"type": 0
}
}