GET Testomania/GetSelectedChapterList?usercode={usercode}&subjectcode={subjectcode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
usercode

string

Required

subjectcode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Chapterlist
NameDescriptionTypeAdditional information
ChapterDisplayName

string

None.

ChapterCode

string

None.

ChapterSequenceNo

integer

None.

StudentStatus

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ChapterDisplayName": "sample string 1",
    "ChapterCode": "sample string 2",
    "ChapterSequenceNo": 3,
    "StudentStatus": 4
  },
  {
    "ChapterDisplayName": "sample string 1",
    "ChapterCode": "sample string 2",
    "ChapterSequenceNo": 3,
    "StudentStatus": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfTestomaniaEntity.Chapterlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
  <TestomaniaEntity.Chapterlist>
    <ChapterCode>sample string 2</ChapterCode>
    <ChapterDisplayName>sample string 1</ChapterDisplayName>
    <ChapterSequenceNo>3</ChapterSequenceNo>
    <StudentStatus>4</StudentStatus>
  </TestomaniaEntity.Chapterlist>
  <TestomaniaEntity.Chapterlist>
    <ChapterCode>sample string 2</ChapterCode>
    <ChapterDisplayName>sample string 1</ChapterDisplayName>
    <ChapterSequenceNo>3</ChapterSequenceNo>
    <StudentStatus>4</StudentStatus>
  </TestomaniaEntity.Chapterlist>
</ArrayOfTestomaniaEntity.Chapterlist>