GET api/masters/Subject/SelectSubject?SubjectName={SubjectName}&PageNo={PageNo}&PageSize={PageSize}
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| SubjectName | No documentation available. |
Define this parameter in the request URI. |
| PageNo | No documentation available. |
Define this parameter in the request URI. |
| PageSize | No documentation available. |
Define this parameter in the request URI. |
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"SubjectList": [
{
"SubjectID": 1,
"SubjectName": "sample string 2"
},
{
"SubjectID": 1,
"SubjectName": "sample string 2"
},
{
"SubjectID": 1,
"SubjectName": "sample string 2"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<MstSubjectViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIST.Masters.ViewModel">
<SubjectList>
<SubjectView>
<SubjectID>1</SubjectID>
<SubjectName>sample string 2</SubjectName>
</SubjectView>
<SubjectView>
<SubjectID>1</SubjectID>
<SubjectName>sample string 2</SubjectName>
</SubjectView>
<SubjectView>
<SubjectID>1</SubjectID>
<SubjectName>sample string 2</SubjectName>
</SubjectView>
</SubjectList>
<TotalRecords>1</TotalRecords>
</MstSubjectViewModel>