POST
/
ai
/
v1
/
lesson-plan
/
additional-block
/
{lesson_plan_id}
Add an additional block to a lesson plan.
curl --request POST \
  --url https://api-staging.crazygoldfish.com/ai/v1/lesson-plan/additional-block/{lesson_plan_id} \
  --header 'Content-Type: application/json' \
  --data '{
  "additional_blocks": {
    "reflection_feedback": "Reflection Feedback block content"
  },
  "duration_minutes": 10
}'
{
  "detail": [
    {
      "id": "78f0974d-d2df-42f4-8c06-073ed43482f5",
      "message": "Lesson plan additional block processing started successfully."
    }
  ]
}

Path Parameters

lesson_plan_id
string<uuid>
required

UUID of the lesson plan to add the block to.

Body

application/json

Additional block data and duration to be added to the lesson plan.

The body is of type object.

Response

200
application/json

Lesson plan additional block processing started successfully.

The response is of type object.