POST api/testpaper/updatefixedwrongtest

更新错题集完成回调

Request Information

URI Parameters

None.

Body Parameters

FixedWrongTest
NameDescriptionTypeAdditional information
Token

考试凭据(登入考试系统时颁发,该凭据是以后每次提交答题过程的唯一依据)

globally unique identifier

None.

PaperId

试卷编号

globally unique identifier

None.

FixedReTestId

已修复的错题Id

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "a39ac345-e4f8-4f2f-9962-e0265a2595e7",
  "PaperId": "71a4c934-2067-47b7-aa80-a80e1602f46d",
  "FixedReTestId": [
    "2c11c12c-6d4b-4d65-85e7-224fa18168ef",
    "58ddf963-aec5-4d59-912f-0f0d998cce99"
  ]
}

text/html

Sample:
{"Token":"a39ac345-e4f8-4f2f-9962-e0265a2595e7","PaperId":"71a4c934-2067-47b7-aa80-a80e1602f46d","FixedReTestId":["2c11c12c-6d4b-4d65-85e7-224fa18168ef","58ddf963-aec5-4d59-912f-0f0d998cce99"]}

application/xml, text/xml

Sample:
<FixedWrongTest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <FixedReTestId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>2c11c12c-6d4b-4d65-85e7-224fa18168ef</d2p1:guid>
    <d2p1:guid>58ddf963-aec5-4d59-912f-0f0d998cce99</d2p1:guid>
  </FixedReTestId>
  <PaperId>71a4c934-2067-47b7-aa80-a80e1602f46d</PaperId>
  <Token>a39ac345-e4f8-4f2f-9962-e0265a2595e7</Token>
</FixedWrongTest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

更新错题集完成回调

JsonRtnDtoOfBoolean
NameDescriptionTypeAdditional 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});