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

> Create a parent account and link it to an existing org student (`student_id`). `email` is
optional (omit → no-email placeholder account, invite later); when a real email is present and
`send_invite` (default true) is set, emails a set-password link. The student must already be an
accepted student of the org (else 404).



## OpenAPI

````yaml /openapi.json post /v1/parents
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/parents:
    post:
      tags:
        - Students & Parents
      summary: Create Parent
      description: >-
        Create a parent account and link it to an existing org student
        (`student_id`). `email` is

        optional (omit → no-email placeholder account, invite later); when a
        real email is present and

        `send_invite` (default true) is set, emails a set-password link. The
        student must already be an

        accepted student of the org (else 404).
      operationId: create_parent_v1_parents_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/ParentCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountCreateResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ParentCreate:
      properties:
        full_name:
          type: string
          title: Full Name
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        send_invite:
          type: boolean
          title: Send Invite
          default: true
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Number
        phone_country_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Country Code
        student_id:
          type: string
          title: Student Id
      additionalProperties: false
      type: object
      required:
        - full_name
        - student_id
      title: ParentCreate
      description: >-
        POST /v1/parents → mint a parent account and link to an EXISTING org
        student. scope

        `accounts:write`. `student_id` must already be an accepted student of
        the org (else 404).


        `email` is optional (omit → no-email placeholder account, invite later);
        `send_invite`

        (default true) gates the set-password email when a real email is
        present.
    AccountCreateResult:
      properties:
        results:
          items:
            $ref: '#/components/schemas/ProvisionedAccount'
          type: array
          title: Results
      type: object
      required:
        - results
      title: AccountCreateResult
      description: >-
        Result of POST /v1/students|tutors|parents — one entry per account
        processed (a student with

        a nested parent returns two).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ProvisionedAccount:
      properties:
        status:
          type: string
          title: Status
        user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: User Id
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        action:
          anyOf:
            - type: string
            - type: 'null'
          title: Action
        reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Reason
        invited:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Invited
        placeholder:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Placeholder
      type: object
      required:
        - status
      title: ProvisionedAccount
      description: One row of an account-create result.
    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_...`

````