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": "fe6cdc6f-8ffe-4868-96be-ce3f6ca0e28e",
"CourseId": "9a31b779-d3fb-4b25-8795-d79c84ed4ab3",
"SectionUid": "sample string 3",
"Title": "sample string 4",
"Description": "sample string 5",
"InstructorId": "78744308-ab34-4fe9-8895-12daad03524e",
"Room": "sample string 7",
"MaxStudents": 8,
"BeginGradeUid": "sample string 9",
"EndGradeUid": "sample string 10",
"PeriodName": "sample string 11",
"BeginSessionId": "c04aeb8f-82a6-4e2d-ade4-04c7f12220e8",
"EndSessionId": "37a7bd75-e6f5-496e-894d-006e8c0c0cc3",
"GradingEvaluationScheduleId": "2983c4fd-3a7d-4ce2-81d0-60f771a2f4e9",
"Id": "a903aaa0-0f0b-4956-90f0-c78bc476d0d1",
"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">a903aaa0-0f0b-4956-90f0-c78bc476d0d1</Id> <BeginGradeUid>sample string 9</BeginGradeUid> <BeginSessionId>c04aeb8f-82a6-4e2d-ade4-04c7f12220e8</BeginSessionId> <CourseId>9a31b779-d3fb-4b25-8795-d79c84ed4ab3</CourseId> <Description>sample string 5</Description> <EndGradeUid>sample string 10</EndGradeUid> <EndSessionId>37a7bd75-e6f5-496e-894d-006e8c0c0cc3</EndSessionId> <GradingEvaluationScheduleId>2983c4fd-3a7d-4ce2-81d0-60f771a2f4e9</GradingEvaluationScheduleId> <InstructorId>78744308-ab34-4fe9-8895-12daad03524e</InstructorId> <MaxStudents>8</MaxStudents> <PeriodName>sample string 11</PeriodName> <Room>sample string 7</Room> <SectionUid>sample string 3</SectionUid> <SiteId>fe6cdc6f-8ffe-4868-96be-ce3f6ca0e28e</SiteId> <Title>sample string 4</Title> </Section>