POST api/exam/answers/confirm-correct
Request Information
URI Parameters
None.
Body Parameters
ExamAnswerConfirmCorrectDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberID | globally unique identifier |
None. |
|
| ExamQuestionSN | integer |
None. |
|
| ExamQuestionOptionSN | integer |
None. |
|
| IsUncertain | boolean |
None. |
|
| CardSN | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberID": "0a072297-cbb9-4772-90d1-deb78d95c15d",
"ExamQuestionSN": 2,
"ExamQuestionOptionSN": 1,
"IsUncertain": true,
"CardSN": 3
}
application/xml, text/xml
Sample:
<ExamAnswerConfirmCorrectDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO"> <CardSN>3</CardSN> <ExamQuestionOptionSN>1</ExamQuestionOptionSN> <ExamQuestionSN>2</ExamQuestionSN> <IsUncertain>true</IsUncertain> <MemberID>0a072297-cbb9-4772-90d1-deb78d95c15d</MemberID> </ExamAnswerConfirmCorrectDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.