POST api/Mine/WrongQSDelete2018
根据指定条件,删除用户错题本中的某道题目
Request Information
URI Parameters
None.
Body Parameters
错题删除条件
PM_WrongQSDeleteCondition| Name | Description | Type | Additional information |
|---|---|---|---|
| QuestionId |
题目标识 |
integer |
None. |
| ImmediatelyRemove |
是否立刻从错题本删除此题(默认0,可以不传值;1表示立刻删除) |
integer |
None. |
| UserToken |
当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"QuestionId": 1,
"ImmediatelyRemove": 2,
"UserToken": "sample string 3",
"DomainName": "sample string 4"
}
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"
}