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

# List Conversations

> List the org's message threads (most recently active first).

A thread is included when one of its active participants is an accepted member of
your organisation. Each thread lists its active participants (user_id + role) and
its last-activity time. Message bodies are fetched separately (and only public,
`visibility='everyone'` messages are ever returned).



## OpenAPI

````yaml /openapi.json get /v1/conversations
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/conversations:
    get:
      tags:
        - General
      summary: List Conversations
      description: >-
        List the org's message threads (most recently active first).


        A thread is included when one of its active participants is an accepted
        member of

        your organisation. Each thread lists its active participants (user_id +
        role) and

        its last-activity time. Message bodies are fetched separately (and only
        public,

        `visibility='everyone'` messages are ever returned).
      operationId: list_conversations_v1_conversations_get
      parameters:
        - name: type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by type: direct | triad | group | classroom_feed'
            title: Type
          description: 'Filter by type: direct | triad | group | classroom_feed'
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Records per page (default 20, max 100)
            default: 20
            title: Limit
          description: Records per page (default 20, max 100)
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_Conversation_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Page_Conversation_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Conversation'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/PageMeta'
      type: object
      required:
        - data
        - meta
      title: Page[Conversation]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Conversation:
      properties:
        id:
          type: string
          title: Id
        type:
          anyOf:
            - type: string
            - type: 'null'
          title: Type
        classroom_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Classroom Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        last_message_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Message At
        participants:
          items:
            $ref: '#/components/schemas/ConversationParticipant'
          type: array
          title: Participants
          default: []
        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: Conversation
      description: |-
        A message thread. `type` is direct | triad | group | classroom_feed.
        `participants` lists only currently-active members (left_at is null).
    PageMeta:
      properties:
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
        count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Count
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
      type: object
      required:
        - limit
        - offset
      title: PageMeta
      description: |-
        Pagination envelope metadata. `count` is the size of the returned page;
        `total` (when present) is the full result-set size for offset paging.
    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
    ConversationParticipant:
      properties:
        user_id:
          type: string
          title: User Id
        role:
          anyOf:
            - type: string
            - type: 'null'
          title: Role
      type: object
      required:
        - user_id
      title: ConversationParticipant
      description: >-
        An active participant of a conversation. `role` is teacher | student |
        parent.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Org API key as `Token token=ei_live_...`

````