GET api/Sections/{SectionId}
Returns a Section.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionId |
Application identifier for the Section |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Section object for the specified SectionId
Section| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteId |
The application identifier of the Site for the Section. |
globally unique identifier |
None. |
| CourseId |
The application identifier of the Course for the Section. |
globally unique identifier |
None. |
| SectionUid |
The user identifier for the Section. |
string |
None. |
| Title |
The descriptive title for the Section. |
string |
None. |
| Description |
The description for the Section. |
string |
None. |
| InstructorId |
The application identifier of the Instructor for the Section. |
globally unique identifier |
None. |
| Room |
The room for the Section. |
string |
None. |
| MaxStudents |
The maximum number of Students allowed to enroll for the Section. |
integer |
None. |
| BeginGradeUid |
The begin Grade user identifier for the Section. |
string |
None. |
| EndGradeUid |
The end Grade user identifier for the Section. |
string |
None. |
| PeriodName |
The period name for the Section. |
string |
None. |
| BeginSessionId |
The application identifier of the begin Session for the Section. |
globally unique identifier |
None. |
| EndSessionId |
The application identifier of the end Session for the Section. |
globally unique identifier |
None. |
| GradingEvaluationScheduleId |
The application identifier of the Grading Evaluation Schedule for the Section. |
globally unique identifier |
None. |
| Id |
The application identifier for the object. This cannot be changed by the user. |
globally unique identifier |
None. |
| DataVersion |
The version of the API data |
string |
None. |
| ApiName |
The name of the object without the Api suffix |
string |
None. |
Response Formats
application/json, text/json
{
"SiteId": "4dc2de4f-44d4-4dca-a8a9-1171602d7e3e",
"CourseId": "15db342b-4a88-4cd4-b3ec-74a22b1ce3c1",
"SectionUid": "sample string 3",
"Title": "sample string 4",
"Description": "sample string 5",
"InstructorId": "39f4bf67-c192-4942-bcc8-9a73d4d97846",
"Room": "sample string 7",
"MaxStudents": 8,
"BeginGradeUid": "sample string 9",
"EndGradeUid": "sample string 10",
"PeriodName": "sample string 11",
"BeginSessionId": "5ee27ebf-3387-4eac-ac2e-5a1ff16fc565",
"EndSessionId": "0bfa0912-03a9-4ae7-9b49-f198d94b06ff",
"GradingEvaluationScheduleId": "f93302cd-23fd-4a39-b86d-ebd2a2194cc1",
"Id": "f3d5914d-52d4-447f-bd9b-0ea243c5fb66",
"DataVersion": "sample string 16",
"ApiName": ""
}
application/xml, text/xml
<Section xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1"> <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 16</DataVersion> <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">f3d5914d-52d4-447f-bd9b-0ea243c5fb66</Id> <BeginGradeUid>sample string 9</BeginGradeUid> <BeginSessionId>5ee27ebf-3387-4eac-ac2e-5a1ff16fc565</BeginSessionId> <CourseId>15db342b-4a88-4cd4-b3ec-74a22b1ce3c1</CourseId> <Description>sample string 5</Description> <EndGradeUid>sample string 10</EndGradeUid> <EndSessionId>0bfa0912-03a9-4ae7-9b49-f198d94b06ff</EndSessionId> <GradingEvaluationScheduleId>f93302cd-23fd-4a39-b86d-ebd2a2194cc1</GradingEvaluationScheduleId> <InstructorId>39f4bf67-c192-4942-bcc8-9a73d4d97846</InstructorId> <MaxStudents>8</MaxStudents> <PeriodName>sample string 11</PeriodName> <Room>sample string 7</Room> <SectionUid>sample string 3</SectionUid> <SiteId>4dc2de4f-44d4-4dca-a8a9-1171602d7e3e</SiteId> <Title>sample string 4</Title> </Section>