Skip to main content
POST
/
powerpath
/
lessonPlans
/
{lessonPlanId}
/
operations
/
sync
Sync the operations for a lesson plan
curl --request POST \
  --url https://api.alpha-1edtech.ai/powerpath/lessonPlans/{lessonPlanId}/operations/sync \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "operationCount": 123,
  "operationResults": [
    {
      "success": true,
      "errors": [
        {
          "message": "<string>"
        }
      ]
    }
  ],
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

lessonPlanId
string
required

Lesson plan ID

Response

Operations synced

success
boolean
required
operationCount
number
required
operationResults
object[]
required
message
string