> ## Documentation Index
> Fetch the complete documentation index at: https://docs.classquill.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Lesson Plan

> Create a lesson plan — a tutor-authored, curriculum-aware teaching plan.

`created_by` (the key's creator), `created_at`, and `updated_at` are server-set.
Any referenced `classroom_id`/`group_id`/`student_id` must belong to your org
(404 otherwise). Honours `Idempotency-Key` on retry.



## OpenAPI

````yaml /openapi.json post /v1/lesson-plans
openapi: 3.1.0
info:
  title: EquateIt Public API
  description: >-
    REST API for EquateIt tutoring organisations. Pipe your sessions, invoices,
    payments, tutor earnings, students, and more into your own tools. Most
    endpoints are reads; a focused set of writes (each gated by a *:write scope)
    create or update data, including creating student/tutor/parent accounts.


    Authenticate every request with an org API key:

        Authorization: Token token=ei_live_...

    Mint keys in the EquateIt app under Settings → Developers.
  version: 1.0.0
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: General
  - name: Sessions
  - name: Tutors
  - name: Students & Parents
  - name: Billing
  - name: Curriculum
  - name: Coursework
  - name: Operations
  - name: Pricing
  - name: Bookings
  - name: Blog
  - name: Reports
paths:
  /v1/lesson-plans:
    post:
      tags:
        - Coursework
      summary: Create Lesson Plan
      description: >-
        Create a lesson plan — a tutor-authored, curriculum-aware teaching plan.


        `created_by` (the key's creator), `created_at`, and `updated_at` are
        server-set.

        Any referenced `classroom_id`/`group_id`/`student_id` must belong to
        your org

        (404 otherwise). Honours `Idempotency-Key` on retry.
      operationId: create_lesson_plan_v1_lesson_plans_post
      parameters:
        - name: Idempotency-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Idempotency-Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LessonPlanCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LessonPlan'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LessonPlanCreate:
      properties:
        scope:
          type: string
          title: Scope
          description: classroom | group | student
        classroom_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Classroom Id
        group_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Group Id
        student_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Student Id
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
        math_level_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Math Level Id
        curriculum_level_ids:
          items:
            type: string
          type: array
          title: Curriculum Level Ids
          default: []
        title:
          type: string
          minLength: 1
          title: Title
        status:
          type: string
          title: Status
          description: draft | ready | delivered
          default: draft
        plan_data:
          $ref: '#/components/schemas/PlanData'
        scheduled_for:
          anyOf:
            - type: string
            - type: 'null'
          title: Scheduled For
      additionalProperties: false
      type: object
      required:
        - scope
        - title
      title: LessonPlanCreate
      description: >-
        POST /v1/lesson-plans → lesson_plans. Server sets created_by (the key's

        creator) + timestamps. The referenced classroom/group/student must
        belong to

        the org.
    LessonPlan:
      properties:
        id:
          type: string
          title: Id
        created_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Created By
        scope:
          anyOf:
            - type: string
            - type: 'null'
          title: Scope
        classroom_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Classroom Id
        group_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Group Id
        student_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Student Id
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
        math_level_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Math Level Id
        curriculum_level_ids:
          items:
            type: string
          type: array
          title: Curriculum Level Ids
          default: []
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        plan_data:
          $ref: '#/components/schemas/PlanData'
        scheduled_for:
          anyOf:
            - type: string
            - type: 'null'
          title: Scheduled For
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - id
      title: LessonPlan
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PlanData:
      properties: {}
      additionalProperties: true
      type: object
      title: PlanData
      description: >-
        Free-form lesson-plan body (learning_objectives, lesson_hook,
        activities,

        worked_examples, exit_ticket, notes, …). Arbitrary keys are preserved.
        Shared

        by the read + write lesson-plan models so the OpenAPI has a single
        `PlanData`

        component — SDK generators choke on duplicate inline object schemas.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Org API key as `Token token=ei_live_...`

````