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
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:12:18.1106576-05:00", "EndDate": "2025-04-25T23:12:18.1106576-05:00", "BeginTime": "2025-04-25T23:12:18.1106576-05:00", "EndTime": "2025-04-25T23:12:18.1106576-05:00", "Id": "b10da2a2-699f-43ba-9526-baf0bc810b82", "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">b10da2a2-699f-43ba-9526-baf0bc810b82</Id> <BeginDate>2025-04-25T23:12:18.1106576-05:00</BeginDate> <BeginTime>2025-04-25T23:12:18.1106576-05:00</BeginTime> <Description>sample string 2</Description> <EndDate>2025-04-25T23:12:18.1106576-05:00</EndDate> <EndTime>2025-04-25T23:12:18.1106576-05:00</EndTime> <Title>sample string 1</Title> </LessonPlan>