GET api/MCQTest/GetRevisionList?YearId={YearId}&InstituteId={InstituteId}&StudentId={StudentId}&AppVersion={AppVersion}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
YearId

string

Required

InstituteId

string

Required

StudentId

string

Required

AppVersion

string

Required

Body Parameters

None.

Response Information

Resource Description

RevisionListObject
NameDescriptionTypeAdditional information
response

string

None.

response_message

string

None.

message

string

None.

RevisionList

Collection of RevisionList

None.

Response Formats

application/json, text/json

Sample:
{
  "response": "sample string 1",
  "response_message": "sample string 2",
  "message": "sample string 3",
  "RevisionList": [
    {
      "SubjectName": "sample string 1",
      "ChapterName": "sample string 2",
      "TopicName": "sample string 3",
      "Result": "sample string 4"
    },
    {
      "SubjectName": "sample string 1",
      "ChapterName": "sample string 2",
      "TopicName": "sample string 3",
      "Result": "sample string 4"
    }
  ]
}

text/html

Sample:
{"response":"sample string 1","response_message":"sample string 2","message":"sample string 3","RevisionList":[{"SubjectName":"sample string 1","ChapterName":"sample string 2","TopicName":"sample string 3","Result":"sample string 4"},{"SubjectName":"sample string 1","ChapterName":"sample string 2","TopicName":"sample string 3","Result":"sample string 4"}]}

application/xml, text/xml

Sample:
<MCQTestModel.RevisionListObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SmartInstituteSoftware.Models">
  <RevisionList>
    <MCQTestModel.RevisionList>
      <ChapterName>sample string 2</ChapterName>
      <Result>sample string 4</Result>
      <SubjectName>sample string 1</SubjectName>
      <TopicName>sample string 3</TopicName>
    </MCQTestModel.RevisionList>
    <MCQTestModel.RevisionList>
      <ChapterName>sample string 2</ChapterName>
      <Result>sample string 4</Result>
      <SubjectName>sample string 1</SubjectName>
      <TopicName>sample string 3</TopicName>
    </MCQTestModel.RevisionList>
  </RevisionList>
  <message>sample string 3</message>
  <response>sample string 1</response>
  <response_message>sample string 2</response_message>
</MCQTestModel.RevisionListObject>