GET api/Institutes/DegreeList?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of ViewDegreeListByInstitute| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| InstituteId | integer |
None. |
|
| DegreeId | integer |
None. |
|
| ActiveStatus | boolean |
None. |
|
| Name | string |
None. |
|
| OrderSerial | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"InstituteId": 2,
"DegreeId": 3,
"ActiveStatus": true,
"Name": "sample string 5",
"OrderSerial": 1
},
{
"Id": 1,
"InstituteId": 2,
"DegreeId": 3,
"ActiveStatus": true,
"Name": "sample string 5",
"OrderSerial": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfViewDegreeListByInstitute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoultryManagementAPI.Models">
<ViewDegreeListByInstitute>
<ActiveStatus>true</ActiveStatus>
<DegreeId>3</DegreeId>
<Id>1</Id>
<InstituteId>2</InstituteId>
<Name>sample string 5</Name>
<OrderSerial>1</OrderSerial>
</ViewDegreeListByInstitute>
<ViewDegreeListByInstitute>
<ActiveStatus>true</ActiveStatus>
<DegreeId>3</DegreeId>
<Id>1</Id>
<InstituteId>2</InstituteId>
<Name>sample string 5</Name>
<OrderSerial>1</OrderSerial>
</ViewDegreeListByInstitute>
</ArrayOfViewDegreeListByInstitute>