Skip to content
关注公众号,获取新课通知

新增试卷


接口URL

http://demonuxtapi.dishait.cn/admin/s/testpaper/save

请求方式

POST

Content-Type

json

请求Header参数

参数名示例值参数类型是否必填参数描述
tokeneyj...NjString用户token
schoolid11Integer网校id

请求Body参数

json5
{
	"title": "第一张试卷",
	"total_score": 100,
	"pass_score": 60,
	"expire": 60,
	"status": 1,
	"questions": [
		{
			"question_id": 1,
			"score": 50
		},
		// ...
	]
}

字段描述

参数名示例值参数类型是否必填参数描述
title第一张试卷String试卷名称
total_score100Integer总分
pass_score60Integer及格分
expire60Integer考试时间
status1Integer状态:0禁用1启用
questions-Object题目列表
questions.question_id1Integer题目id
questions.score50Integer题目分数

成功响应示例

json5
{
	"msg": "ok",
	"data": {
		"id": 7,
		"title": "第一张试卷",
		"total_score": 100,
		"pass_score": 60,
		"expire": 60,
		"status": 1,
		"school_id": 11,
		"updated_time": "2021-03-25T17:00:35.734Z",
		"created_time": "2021-03-25T17:00:35.734Z"
	},
	"code": 20000
}