Skip to main content
POST
/
lesson-plan
/
v1
/
additional-enrichment-block
/
{lesson_plan_id}
Add one or more additional blocks to a lesson plan.
curl --request POST \
  --url https://api-staging.crazygoldfish.com/lesson-plan/v1/additional-enrichment-block/{lesson_plan_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "additional_blocks": [
    "reflection_feedback",
    "emotional_social_development"
  ],
  "duration_minutes": 20
}
'
{
  "detail": [
    {
      "id": "78f0974d-d2df-42f4-8c06-073ed43482f5",
      "message": "Lesson plan additional block processing started successfully."
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

lesson_plan_id
string<uuid>
required

UUID of the lesson plan to which the additional blocks will be added.

Body

application/json

List of additional block identifiers and the total duration to add to the lesson plan.

additional_blocks
string[]
required

Array of block keys to generate (e.g., 'reflection_feedback', 'emotional_social_development').

duration_minutes
integer
required

Total duration in minutes allocated for the additional blocks.

Response

Lesson plan additional block processing started successfully.

detail
object[]