GET api/Sections/{SectionId}/LessonPlans
Returns the Lesson Plans for 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
Collection of LessonPlan objects for the specified SectionId
Collection of LessonPlan| Name | Description | Type | Additional information |
|---|---|---|---|
| Title |
The title for the Lesson Plan. |
string |
None. |
| Description |
The description for the Lesson Plan. |
string |
None. |
| BeginDate |
The begin date for the Lesson Plan. |
date |
None. |
| EndDate |
The end date for the Lesson Plan. |
date |
None. |
| BeginTime |
The begin time for the Lesson Plan. |
date |
None. |
| EndTime |
The end time for the Lesson Plan. |
date |
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
Sample:
[
{
"Title": "sample string 1",
"Description": "sample string 2",
"BeginDate": "2025-12-16T23:44:43.6448969-06:00",
"EndDate": "2025-12-16T23:44:43.6448969-06:00",
"BeginTime": "2025-12-16T23:44:43.6448969-06:00",
"EndTime": "2025-12-16T23:44:43.6448969-06:00",
"Id": "b64b9ab9-0c89-42b6-8556-0da8cfe8cd6c",
"DataVersion": "sample string 8",
"ApiName": ""
},
{
"Title": "sample string 1",
"Description": "sample string 2",
"BeginDate": "2025-12-16T23:44:43.6448969-06:00",
"EndDate": "2025-12-16T23:44:43.6448969-06:00",
"BeginTime": "2025-12-16T23:44:43.6448969-06:00",
"EndTime": "2025-12-16T23:44:43.6448969-06:00",
"Id": "b64b9ab9-0c89-42b6-8556-0da8cfe8cd6c",
"DataVersion": "sample string 8",
"ApiName": ""
}
]
application/xml, text/xml
Sample:
<ArrayOfLessonPlan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1">
<LessonPlan>
<DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 8</DataVersion>
<Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">b64b9ab9-0c89-42b6-8556-0da8cfe8cd6c</Id>
<BeginDate>2025-12-16T23:44:43.6448969-06:00</BeginDate>
<BeginTime>2025-12-16T23:44:43.6448969-06:00</BeginTime>
<Description>sample string 2</Description>
<EndDate>2025-12-16T23:44:43.6448969-06:00</EndDate>
<EndTime>2025-12-16T23:44:43.6448969-06:00</EndTime>
<Title>sample string 1</Title>
</LessonPlan>
<LessonPlan>
<DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 8</DataVersion>
<Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">b64b9ab9-0c89-42b6-8556-0da8cfe8cd6c</Id>
<BeginDate>2025-12-16T23:44:43.6448969-06:00</BeginDate>
<BeginTime>2025-12-16T23:44:43.6448969-06:00</BeginTime>
<Description>sample string 2</Description>
<EndDate>2025-12-16T23:44:43.6448969-06:00</EndDate>
<EndTime>2025-12-16T23:44:43.6448969-06:00</EndTime>
<Title>sample string 1</Title>
</LessonPlan>
</ArrayOfLessonPlan>