文档
测试

获取考试题目

GET
https://management.887yun.com/api/v1/exam/getExamQuesion?token=12c0fd21-d923-45e0-8f2d-0fd71fdfa684&exam_id=12

请求参数

参数名
类型
描述
必填
token
string
示例:12c0fd21-d923-45e0-8f2d-0fd71fdfa684
必填
exam_id
int
示例:12
必填

响应参数

参数名
类型
描述
必填
code
int
示例:1
必填
msg
string
示例:
必填
time
string
示例:1649671981
必填
data
object
数据字典
必填
exam_id
int
示例:12
必填
item
object
数据字典
必填
item_id
int
示例:17
必填
title
string
示例:入职提示
必填
exam_illustrate
string
示例:请您在5分钟完成考试
必填
exam_time
int
示例:5
必填
pass_points
int
示例:100
必填
question
array
数据列表
必填
question_id
int
示例:16
必填
title
string
示例:运营客服岗位试用期合同签3个月,转正后劳动合同签署多少年?
必填
options
array
数据列表
必填
value
int
示例:0
必填
text
string
示例:A 、转正后劳动合同签署1年
必填
type
string
示例:1
必填

说明 / 示例

```language { "code": 1, "msg": "", "time": "1649671981", "data": { "exam_id": 12, "item": { "item_id": 17, //考试id "title": "入职提示", //考试题目 "exam_illustrate": "请您在5分钟完成考试", //考试提示 "exam_time": 5, //考试时间 单位=分钟 "pass_points": 100 //及格分数 }, "question": [ { "question_id": 16, "title": "运营客服岗位试用期合同签3个月,转正后劳动合同签署多少年?", "options": [ { "value": 0, "text": "A 、转正后劳动合同签署1年" }, { "value": 1, "text": "B 、转正后劳动合同签署3年" } ], //考题选项 "type": "1" //考题类型 type (1=单选题, 2=多选题, 3=判断题, 4=填空题, 5=简答题) }, ] } } ```