GET api/Sector
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Sector| Name | Description | Type | Additional information |
|---|---|---|---|
| SectorId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| UsedByCourse | boolean |
None. |
|
| UsedByProgram | boolean |
None. |
|
| SchoolId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SectorId": "32addde8-b59b-46b3-a937-8ce313ebedfb",
"Name": "sample string 2",
"Description": "sample string 3",
"UsedByCourse": true,
"UsedByProgram": true,
"SchoolId": "a9ad448b-cd9b-486e-97ad-2df34a61c212"
},
{
"SectorId": "32addde8-b59b-46b3-a937-8ce313ebedfb",
"Name": "sample string 2",
"Description": "sample string 3",
"UsedByCourse": true,
"UsedByProgram": true,
"SchoolId": "a9ad448b-cd9b-486e-97ad-2df34a61c212"
}
]
application/xml, text/xml
Sample:
<ArrayOfSector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDMS.REST.Models">
<Sector>
<Description>sample string 3</Description>
<Name>sample string 2</Name>
<SchoolId>a9ad448b-cd9b-486e-97ad-2df34a61c212</SchoolId>
<SectorId>32addde8-b59b-46b3-a937-8ce313ebedfb</SectorId>
<UsedByCourse>true</UsedByCourse>
<UsedByProgram>true</UsedByProgram>
</Sector>
<Sector>
<Description>sample string 3</Description>
<Name>sample string 2</Name>
<SchoolId>a9ad448b-cd9b-486e-97ad-2df34a61c212</SchoolId>
<SectorId>32addde8-b59b-46b3-a937-8ce313ebedfb</SectorId>
<UsedByCourse>true</UsedByCourse>
<UsedByProgram>true</UsedByProgram>
</Sector>
</ArrayOfSector>