POST api/exam/wrongbook/start-practice
Request Information
URI Parameters
None.
Body Parameters
ExamWrongBookPracticeStartDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberID | globally unique identifier |
None. |
|
| SubjectSN | integer |
None. |
|
| TotalQuestionCount | integer |
None. |
|
| Strategy | byte |
None. |
|
| Difficulty | byte |
None. |
|
| PracticeRenderMode | integer |
None. |
|
| PageSize | integer |
None. |
|
| CardName | string |
None. |
|
| Seeds | Collection of ExamWrongBookSeedItemDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberID": "17d315d1-4a32-4b59-a0c7-9f17c84c0b7f",
"SubjectSN": 1,
"TotalQuestionCount": 2,
"Strategy": 64,
"Difficulty": 64,
"PracticeRenderMode": 5,
"PageSize": 6,
"CardName": "sample string 7",
"Seeds": [
{
"ExamMemberAnswerSN": 1,
"ExamMemberAnswerID": "2a5606dd-5789-40e7-8dd6-4b303aba7606",
"SubjectVersionSN": 1,
"PickedReasonSN": 1
},
{
"ExamMemberAnswerSN": 1,
"ExamMemberAnswerID": "2a5606dd-5789-40e7-8dd6-4b303aba7606",
"SubjectVersionSN": 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.DTO.Resource.Models.Exam">
<CardName>sample string 7</CardName>
<Difficulty>64</Difficulty>
<MemberID>17d315d1-4a32-4b59-a0c7-9f17c84c0b7f</MemberID>
<PageSize>6</PageSize>
<PracticeRenderMode>5</PracticeRenderMode>
<Seeds>
<ExamWrongBookSeedItemDTO>
<ExamMemberAnswerID>2a5606dd-5789-40e7-8dd6-4b303aba7606</ExamMemberAnswerID>
<ExamMemberAnswerSN>1</ExamMemberAnswerSN>
<PickedReasonSN>1</PickedReasonSN>
<SubjectVersionSN>1</SubjectVersionSN>
</ExamWrongBookSeedItemDTO>
<ExamWrongBookSeedItemDTO>
<ExamMemberAnswerID>2a5606dd-5789-40e7-8dd6-4b303aba7606</ExamMemberAnswerID>
<ExamMemberAnswerSN>1</ExamMemberAnswerSN>
<PickedReasonSN>1</PickedReasonSN>
<SubjectVersionSN>1</SubjectVersionSN>
</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
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.