POST api/exam/answers/confirm-reason

Request Information

URI Parameters

None.

Body Parameters

ExamAnswerConfirmReasonDTO
NameDescriptionTypeAdditional information
MemberID

globally unique identifier

None.

ExamQuestionSN

integer

None.

ExamQuestionOptionSN

integer

None.

ExamReasonSN

integer

None.

IsUncertain

boolean

None.

CardSN

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberID": "bd27d5aa-7d0d-42f0-881a-eecd29d6aa62",
  "ExamQuestionSN": 2,
  "ExamQuestionOptionSN": 1,
  "ExamReasonSN": 3,
  "IsUncertain": true,
  "CardSN": 4
}

application/xml, text/xml

Sample:
<ExamAnswerConfirmReasonDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO">
  <CardSN>4</CardSN>
  <ExamQuestionOptionSN>1</ExamQuestionOptionSN>
  <ExamQuestionSN>2</ExamQuestionSN>
  <ExamReasonSN>3</ExamReasonSN>
  <IsUncertain>true</IsUncertain>
  <MemberID>bd27d5aa-7d0d-42f0-881a-eecd29d6aa62</MemberID>
</ExamAnswerConfirmReasonDTO>

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.