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