GET api/MCQTest/GetWhoIsAttemptedList?YearId={YearId}&InstituteId={InstituteId}&TestId={TestId}&AppVersion={AppVersion}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
YearId

string

Required

InstituteId

string

Required

TestId

string

Required

AppVersion

string

Required

Body Parameters

None.

Response Information

Resource Description

WhoisAttemptObject
NameDescriptionTypeAdditional information
message

string

None.

response

string

None.

response_message

string

None.

AttempStudent

Collection of AttempStudent

None.

Response Formats

application/json, text/json

Sample:
{
  "message": "sample string 1",
  "response": "sample string 2",
  "response_message": "sample string 3",
  "AttempStudent": [
    {
      "StudentName": "sample string 1",
      "IsAttempted": "sample string 2"
    },
    {
      "StudentName": "sample string 1",
      "IsAttempted": "sample string 2"
    }
  ]
}

text/html

Sample:
{"message":"sample string 1","response":"sample string 2","response_message":"sample string 3","AttempStudent":[{"StudentName":"sample string 1","IsAttempted":"sample string 2"},{"StudentName":"sample string 1","IsAttempted":"sample string 2"}]}

application/xml, text/xml

Sample:
<MCQTestModel.WhoisAttemptObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SmartInstituteSoftware.Models">
  <AttempStudent>
    <MCQTestModel.AttempStudent>
      <IsAttempted>sample string 2</IsAttempted>
      <StudentName>sample string 1</StudentName>
    </MCQTestModel.AttempStudent>
    <MCQTestModel.AttempStudent>
      <IsAttempted>sample string 2</IsAttempted>
      <StudentName>sample string 1</StudentName>
    </MCQTestModel.AttempStudent>
  </AttempStudent>
  <message>sample string 1</message>
  <response>sample string 2</response>
  <response_message>sample string 3</response_message>
</MCQTestModel.WhoisAttemptObject>