POST api/paperscoremgt/CancelAbnormalFlag
移除异常答题卡标记
Request Information
URI Parameters
None.
Body Parameters
CancelAbnormalFlagQueryName | Description | Type | Additional information |
---|---|---|---|
PaperId |
试卷编号 |
globally unique identifier |
None. |
StuIds |
学号 |
Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{ "PaperId": "6b35ca70-0524-4078-9cdd-c9f041bcdc82", "StuIds": [ "sample string 1", "sample string 2" ] }
text/html
Sample:
{"PaperId":"6b35ca70-0524-4078-9cdd-c9f041bcdc82","StuIds":["sample string 1","sample string 2"]}
application/xml, text/xml
Sample:
<CancelAbnormalFlagQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <PaperId>6b35ca70-0524-4078-9cdd-c9f041bcdc82</PaperId> <StuIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </StuIds> </CancelAbnormalFlagQuery>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
移除异常答题卡标记
JsonRtnDtoOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": true }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":true}
application/xml, text/xml
Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data>true</Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfboolean>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});