获取考试成绩
#
接口概述- 功能:获取考试成绩(仅支持考试问卷)
- 请求方式:GET
- 请求地址:/api/surveys/{survey_id}/answers/{answer_id}/exam/score?appid={appid}&access_token={access_token}
#
请求参数参数名 | 类型 | 参数位置 | 描述 | 示例值 |
---|---|---|---|---|
survey_id | integer | uri | 问卷ID | 292192 |
answer_id | integer | uri | 回答编号 | 1 |
#
响应参数参数名 | 类型 | 描述 |
---|---|---|
score | float | 成绩 |
#
响应示例{ "code": "OK", "error": { "type": "" }, "data": { "score": 90 }, "request_id": "2c4fb97e-aedb-47e2-9fe1-34ce4cb444fe"}
#
错误码error.type 错误代码 | 错误描述 |
---|---|
survey_not_found | 问卷不存在 |
invalid_scene | 不是考试问卷 |
answer_not_found | 答卷不存在 |
score_not_published | 成绩未发布(出卷人未进行评分) |