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": "b7552564-c2f2-4d2e-adf6-3ec54dad6df2",
"CourseId": "450c423e-0617-48a2-9538-1f19413ff584",
"SectionUid": "sample string 3",
"Title": "sample string 4",
"Description": "sample string 5",
"InstructorId": "5f6ce1a6-501a-415f-9981-a84c8fac61d6",
"Room": "sample string 7",
"MaxStudents": 8,
"BeginGradeUid": "sample string 9",
"EndGradeUid": "sample string 10",
"PeriodName": "sample string 11",
"BeginSessionId": "66f99cf7-8843-4d17-ab27-1999f67d3a1d",
"EndSessionId": "dff49444-8a60-4f94-b208-1bd5ee19cdf9",
"GradingEvaluationScheduleId": "5d61fe93-3f6a-454f-88cc-06805b152685",
"Id": "eee1b9e8-baa2-47a9-825e-1ab2dc8bf5aa",
"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">eee1b9e8-baa2-47a9-825e-1ab2dc8bf5aa</Id> <BeginGradeUid>sample string 9</BeginGradeUid> <BeginSessionId>66f99cf7-8843-4d17-ab27-1999f67d3a1d</BeginSessionId> <CourseId>450c423e-0617-48a2-9538-1f19413ff584</CourseId> <Description>sample string 5</Description> <EndGradeUid>sample string 10</EndGradeUid> <EndSessionId>dff49444-8a60-4f94-b208-1bd5ee19cdf9</EndSessionId> <GradingEvaluationScheduleId>5d61fe93-3f6a-454f-88cc-06805b152685</GradingEvaluationScheduleId> <InstructorId>5f6ce1a6-501a-415f-9981-a84c8fac61d6</InstructorId> <MaxStudents>8</MaxStudents> <PeriodName>sample string 11</PeriodName> <Room>sample string 7</Room> <SectionUid>sample string 3</SectionUid> <SiteId>b7552564-c2f2-4d2e-adf6-3ec54dad6df2</SiteId> <Title>sample string 4</Title> </Section>