> ## 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 Classroom

> Create a classroom scoped to this org. The org owner is set as the tutor (owner-as-merchant model).
Returns 422 with a `reason` field on validation failure.



## OpenAPI

````yaml /openapi.json post /v1/classrooms
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/classrooms:
    post:
      tags:
        - Curriculum
      summary: Create Classroom
      description: >-
        Create a classroom scoped to this org. The org owner is set as the tutor
        (owner-as-merchant model).

        Returns 422 with a `reason` field on validation failure.
      operationId: create_classroom_v1_classrooms_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClassroomCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Classroom'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ClassroomCreate:
      properties:
        name:
          type: string
          title: Name
        subject_id:
          type: string
          title: Subject Id
        price_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Price Cents
        billing_interval:
          anyOf:
            - type: string
              enum:
                - one_time
                - monthly
            - type: 'null'
          title: Billing Interval
      type: object
      required:
        - name
        - subject_id
      title: ClassroomCreate
    Classroom:
      properties:
        id:
          type: string
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        tutor_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tutor Id
        subject_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Subject Id
        join_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Join Code
        price_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Price Cents
        billing_interval:
          anyOf:
            - type: string
            - type: 'null'
          title: Billing Interval
        group_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Group Id
        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: Classroom
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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_...`

````