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

# Get Lesson Participant

> Fetch a single lesson-participant row by ID. 404 unless its session belongs to this org.



## OpenAPI

````yaml /openapi.json get /v1/lesson-participants/{participant_id}
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-participants/{participant_id}:
    get:
      tags:
        - Sessions
      summary: Get Lesson Participant
      description: >-
        Fetch a single lesson-participant row by ID. 404 unless its session
        belongs to this org.
      operationId: get_lesson_participant_v1_lesson_participants__participant_id__get
      parameters:
        - name: participant_id
          in: path
          required: true
          schema:
            type: string
            title: Participant Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LessonParticipant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LessonParticipant:
      properties:
        id:
          type: string
          title: Id
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
        student_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Student Id
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        attendance:
          anyOf:
            - type: string
            - type: 'null'
          title: Attendance
        cancelled_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Cancelled At
        invited_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Invited At
        responded_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Responded At
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
      title: LessonParticipant
      description: >-
        A per-student attendance row on a (group/classroom) session.
        Billing-state

        fields (rate_snapshot_cents, settlement_state, stripe_payment_id,

        reported_payment_method) are deliberately NOT exposed.
    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_...`

````