GET api/Sector/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SectorName | 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": "b6de2f54-db63-46fe-ab4c-07a7042e925b", "Name": "sample string 2", "Description": "sample string 3", "UsedByCourse": true, "UsedByProgram": true, "SchoolId": "b90fd912-cd0c-4856-9ab4-0a57bbe92990" }
application/xml, text/xml
Sample:
<Sector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDMS.REST.Models"> <Description>sample string 3</Description> <Name>sample string 2</Name> <SchoolId>b90fd912-cd0c-4856-9ab4-0a57bbe92990</SchoolId> <SectorId>b6de2f54-db63-46fe-ab4c-07a7042e925b</SectorId> <UsedByCourse>true</UsedByCourse> <UsedByProgram>true</UsedByProgram> </Sector>