Skip to main content
POST
/
powerpath
/
lessonPlans
Create a lesson plan
curl --request POST \
  --url https://api.alpha-1edtech.ai/powerpath/lessonPlans/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "courseId": "<string>",
  "userId": "<string>",
  "classId": "<string>"
}
'
{
  "lessonPlanId": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
courseId
string
required

The Sourced ID of the course

userId
string
required

The Sourced ID of the student

classId
string

(optional) The Sourced ID of the class. Defaults to current year's class for the student

Response

Lesson plan already exists

lessonPlanId
string
required