POST api/exams/filter-tests

Request Information

URI Parameters

None.

Body Parameters

ExamFilterRequest
NameDescriptionTypeAdditional information
YearId

integer

None.

ClassID

integer

None.

TestType

string

None.

SchoolID

integer

None.

ExamType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "YearId": 1,
  "ClassID": 2,
  "TestType": "sample string 3",
  "SchoolID": 4,
  "ExamType": "sample string 5"
}

application/xml, text/xml

Sample:
<ExamFilterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoapToRestAPI.Controllers">
  <ClassID>2</ClassID>
  <ExamType>sample string 5</ExamType>
  <SchoolID>4</SchoolID>
  <TestType>sample string 3</TestType>
  <YearId>1</YearId>
</ExamFilterRequest>

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.