POST api/exam/answers/confirm-wrong

Request Information

URI Parameters

None.

Body Parameters

ExamAnswerConfirmWrongDTO
NameDescriptionTypeAdditional information
MemberID

globally unique identifier

None.

SubjectVersionSN

integer

None.

SubjectAnswerSN

integer

None.

IsUncertain

boolean

None.

CardSN

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberID": "9cf8040a-0afe-4640-952d-fb1789e60246",
  "SubjectVersionSN": 2,
  "SubjectAnswerSN": 1,
  "IsUncertain": true,
  "CardSN": 3
}

application/xml, text/xml

Sample:
<ExamAnswerConfirmWrongDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.DTO.Resource.Models.Exam">
  <CardSN>3</CardSN>
  <IsUncertain>true</IsUncertain>
  <MemberID>9cf8040a-0afe-4640-952d-fb1789e60246</MemberID>
  <SubjectAnswerSN>1</SubjectAnswerSN>
  <SubjectVersionSN>2</SubjectVersionSN>
</ExamAnswerConfirmWrongDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.