GET api/MrExamYear?schoolId={schoolId}&StandardId={StandardId}&ExamId={ExamId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| schoolId | integer |
Required |
|
| StandardId | integer |
Required |
|
| ExamId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ExamYearMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| YearId | integer |
None. |
|
| YearName | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"yearId": 1,
"yearName": "sample string 2"
},
{
"yearId": 1,
"yearName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfExamYearMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.App_Start.Entity">
<ExamYearMaster>
<YearId>1</YearId>
<YearName>sample string 2</YearName>
</ExamYearMaster>
<ExamYearMaster>
<YearId>1</YearId>
<YearName>sample string 2</YearName>
</ExamYearMaster>
</ArrayOfExamYearMaster>