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 LessonPlanName | 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-04-25T23:20:10.9258753-05:00", "EndDate": "2025-04-25T23:20:10.9258753-05:00", "BeginTime": "2025-04-25T23:20:10.9258753-05:00", "EndTime": "2025-04-25T23:20:10.9258753-05:00", "Id": "f4fe6206-7696-4310-bf60-47158ed5288f", "DataVersion": "sample string 8", "ApiName": "" }, { "Title": "sample string 1", "Description": "sample string 2", "BeginDate": "2025-04-25T23:20:10.9258753-05:00", "EndDate": "2025-04-25T23:20:10.9258753-05:00", "BeginTime": "2025-04-25T23:20:10.9258753-05:00", "EndTime": "2025-04-25T23:20:10.9258753-05:00", "Id": "f4fe6206-7696-4310-bf60-47158ed5288f", "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">f4fe6206-7696-4310-bf60-47158ed5288f</Id> <BeginDate>2025-04-25T23:20:10.9258753-05:00</BeginDate> <BeginTime>2025-04-25T23:20:10.9258753-05:00</BeginTime> <Description>sample string 2</Description> <EndDate>2025-04-25T23:20:10.9258753-05:00</EndDate> <EndTime>2025-04-25T23:20:10.9258753-05: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">f4fe6206-7696-4310-bf60-47158ed5288f</Id> <BeginDate>2025-04-25T23:20:10.9258753-05:00</BeginDate> <BeginTime>2025-04-25T23:20:10.9258753-05:00</BeginTime> <Description>sample string 2</Description> <EndDate>2025-04-25T23:20:10.9258753-05:00</EndDate> <EndTime>2025-04-25T23:20:10.9258753-05:00</EndTime> <Title>sample string 1</Title> </LessonPlan> </ArrayOfLessonPlan>