POST api/Mine/WrongQSAnswerQuestion
错题本之错题练习结果提交接口,用于收集学员在错题练习环节的做题情况,以便服务端进行错误次数累加或将题目从错题列表中清除
Request Information
URI Parameters
None.
Body Parameters
错题练习结果提交数据模型
PM_WrongQSAnswerSubmit| Name | Description | Type | Additional information |
|---|---|---|---|
| QuestionId |
学员所做题目标识 |
integer |
None. |
| ChooseAnswerId |
学员选择的答案选项标识 |
integer |
None. |
| IsRight |
学员所选答案是否正确 |
signed byte |
None. |
| UserToken |
当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"QuestionId": 1,
"ChooseAnswerId": 2,
"IsRight": 64,
"UserToken": "sample string 4",
"DomainName": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseModelOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| State | integer |
None. |
|
| Msg |
返回的错误或描述信息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"State": 2,
"Msg": "sample string 3"
}