GET api/MrGetSubHeadList?examHeadId={examHeadId}&StandardId={StandardId}&subjectId={subjectId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
examHeadId

string

Required

StandardId

integer

Required

subjectId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ExamHeadMaster
NameDescriptionTypeAdditional information
HeaderId

string

None.

HeaderName

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "headerId": "sample string 1",
    "headerName": "sample string 2"
  },
  {
    "headerId": "sample string 1",
    "headerName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExamHeadMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.App_Start.Entity">
  <ExamHeadMaster>
    <HeaderId>sample string 1</HeaderId>
    <HeaderName>sample string 2</HeaderName>
  </ExamHeadMaster>
  <ExamHeadMaster>
    <HeaderId>sample string 1</HeaderId>
    <HeaderName>sample string 2</HeaderName>
  </ExamHeadMaster>
</ArrayOfExamHeadMaster>