On this page
查看试卷详情
接口URL
请求方式
GET
Content-Type
application/x-www-form-urlencoded
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
token | eyj...Nj | String | 是 | 用户token |
schoolid | 11 | Integer | 是 | 网校id |
请求Query参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
id | 1 | Integer | 是 | 试卷id |
成功响应示例
json5
{
"msg": "ok",
"data": {
"id": 1,
"title": "第一张试卷",
"total_score": 100,
"pass_score": 60,
"expire": 60,
"status": 1,
"questions": [
{
"score": 50,
"question": {
"id": 1,
"title": "<p>第一道填空题</p>",
"remark": "",
"type": "completion",
"value": {
"options": [
"填空1",
"填空2"
]
}
}
},
// ...
]
},
"code": 20000
}