POST api/exam/wrongbook/start-practice

Request Information

URI Parameters

None.

Body Parameters

ExamWrongBookPracticeStartDTO
NameDescriptionTypeAdditional information
MemberID

globally unique identifier

None.

SubjectSN

integer

None.

TotalQuestionCount

integer

None.

Strategy

byte

None.

Difficulty

byte

None.

Seeds

Collection of ExamWrongBookSeedItemDTO

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberID": "fb7dd667-ff03-48f7-b384-0cd67a7d7e1a",
  "SubjectSN": 1,
  "TotalQuestionCount": 2,
  "Strategy": 64,
  "Difficulty": 64,
  "Seeds": [
    {
      "ExamMemberAnswerSN": 1,
      "ExamMemberAnswerID": "b6ad1821-3d98-4265-b041-5a0447058c51",
      "ExamQuestionSN": 1,
      "PickedReasonSN": 1
    },
    {
      "ExamMemberAnswerSN": 1,
      "ExamMemberAnswerID": "b6ad1821-3d98-4265-b041-5a0447058c51",
      "ExamQuestionSN": 1,
      "PickedReasonSN": 1
    }
  ]
}

application/xml, text/xml

Sample:
<ExamWrongBookPracticeStartDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO">
  <Difficulty>64</Difficulty>
  <MemberID>fb7dd667-ff03-48f7-b384-0cd67a7d7e1a</MemberID>
  <Seeds>
    <ExamWrongBookSeedItemDTO>
      <ExamMemberAnswerID>b6ad1821-3d98-4265-b041-5a0447058c51</ExamMemberAnswerID>
      <ExamMemberAnswerSN>1</ExamMemberAnswerSN>
      <ExamQuestionSN>1</ExamQuestionSN>
      <PickedReasonSN>1</PickedReasonSN>
    </ExamWrongBookSeedItemDTO>
    <ExamWrongBookSeedItemDTO>
      <ExamMemberAnswerID>b6ad1821-3d98-4265-b041-5a0447058c51</ExamMemberAnswerID>
      <ExamMemberAnswerSN>1</ExamMemberAnswerSN>
      <ExamQuestionSN>1</ExamQuestionSN>
      <PickedReasonSN>1</PickedReasonSN>
    </ExamWrongBookSeedItemDTO>
  </Seeds>
  <Strategy>64</Strategy>
  <SubjectSN>1</SubjectSN>
  <TotalQuestionCount>2</TotalQuestionCount>
</ExamWrongBookPracticeStartDTO>

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.