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

# Send Student Invite

> (Re)send the set-password invite to an org student created earlier. Use this after you've
added an email to a no-email account (via PATCH /v1/students/{id}). 409 if the student still
has no real email; 404 if they aren't affiliated with your org.



## OpenAPI

````yaml /openapi.json post /v1/students/{student_id}/send-invite
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/students/{student_id}/send-invite:
    post:
      tags:
        - Students & Parents
      summary: Send Student Invite
      description: >-
        (Re)send the set-password invite to an org student created earlier. Use
        this after you've

        added an email to a no-email account (via PATCH /v1/students/{id}). 409
        if the student still

        has no real email; 404 if they aren't affiliated with your org.
      operationId: send_student_invite_v1_students__student_id__send_invite_post
      parameters:
        - name: student_id
          in: path
          required: true
          schema:
            type: string
            title: Student Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountInviteSent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AccountInviteSent:
      properties:
        sent:
          type: boolean
          title: Sent
          default: false
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
      type: object
      title: AccountInviteSent
      description: >-
        Result of POST /v1/students|parents/{id}/send-invite. `sent` is true
        when a set-password

        email was dispatched; `email` is the address it went to.
    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_...`

````