POST api/exam/cards/start

Request Information

URI Parameters

None.

Body Parameters

ExamMemberCardStartDTO
NameDescriptionTypeAdditional information
MemberID

globally unique identifier

None.

SubjectSN

integer

None.

TotalQuestionCount

integer

None.

Strategy

byte

None.

Difficulty

byte

None.

RangeType

byte

None.

RangeValue

string

None.

QuestionOrder

byte

None.

QuestionTypeFilterMode

byte

None.

ExcludeAnsweredMode

byte

None.

ExcludeAnsweredDays

integer

None.

SettingJson

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberID": "6588a465-050a-4656-92c5-80c0321f0d34",
  "SubjectSN": 2,
  "TotalQuestionCount": 3,
  "Strategy": 64,
  "Difficulty": 64,
  "RangeType": 64,
  "RangeValue": "sample string 7",
  "QuestionOrder": 64,
  "QuestionTypeFilterMode": 64,
  "ExcludeAnsweredMode": 64,
  "ExcludeAnsweredDays": 1,
  "SettingJson": "sample string 11"
}

application/xml, text/xml

Sample:
<ExamMemberCardStartDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO">
  <Difficulty>64</Difficulty>
  <ExcludeAnsweredDays>1</ExcludeAnsweredDays>
  <ExcludeAnsweredMode>64</ExcludeAnsweredMode>
  <MemberID>6588a465-050a-4656-92c5-80c0321f0d34</MemberID>
  <QuestionOrder>64</QuestionOrder>
  <QuestionTypeFilterMode>64</QuestionTypeFilterMode>
  <RangeType>64</RangeType>
  <RangeValue>sample string 7</RangeValue>
  <SettingJson>sample string 11</SettingJson>
  <Strategy>64</Strategy>
  <SubjectSN>2</SubjectSN>
  <TotalQuestionCount>3</TotalQuestionCount>
</ExamMemberCardStartDTO>

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.