GET api/LessonPlans/{LessonPlanId}
Returns a Lesson Plan.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| LessonPlanId | 
                         Application identifier for the Lesson Plan  | 
                    globally unique identifier | 
                                 Required  | 
                
Body Parameters
None.
Response Information
Resource Description
LessonPlan object for the specified LessonPlanId
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-11-04T09:05:03.5926148-06:00",
  "EndDate": "2025-11-04T09:05:03.5926148-06:00",
  "BeginTime": "2025-11-04T09:05:03.5926148-06:00",
  "EndTime": "2025-11-04T09:05:03.5926148-06:00",
  "Id": "e0aa07a2-470e-4ecb-98eb-4dc8142482c0",
  "DataVersion": "sample string 8",
  "ApiName": ""
}
        application/xml, text/xml
            Sample:
<LessonPlan 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 8</DataVersion> <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">e0aa07a2-470e-4ecb-98eb-4dc8142482c0</Id> <BeginDate>2025-11-04T09:05:03.5926148-06:00</BeginDate> <BeginTime>2025-11-04T09:05:03.5926148-06:00</BeginTime> <Description>sample string 2</Description> <EndDate>2025-11-04T09:05:03.5926148-06:00</EndDate> <EndTime>2025-11-04T09:05:03.5926148-06:00</EndTime> <Title>sample string 1</Title> </LessonPlan>