> ## 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 Session Feedback

> Lesson feedback for the org's tutors, newest first (owner/admin view —
attributed). `session_feedback.organization_id` is stamped at submit time, so
rows scope directly to this org. Pass `anonymize=true` to return a first-name +
initial instead of the full reviewer name when re-publishing externally.

Note: legacy `tutor_reviews` migrated into `session_feedback` carry a NULL
organization_id (they predate org scoping) and are intentionally NOT returned
here — they belong to no org. Backfilling them to a tutor's *current* org would
mis-attribute pre-org personal reviews, so the exclusion is by design.



## OpenAPI

````yaml /openapi.json get /v1/session-feedback
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/session-feedback:
    get:
      tags:
        - General
      summary: List Session Feedback
      description: >-
        Lesson feedback for the org's tutors, newest first (owner/admin view —

        attributed). `session_feedback.organization_id` is stamped at submit
        time, so

        rows scope directly to this org. Pass `anonymize=true` to return a
        first-name +

        initial instead of the full reviewer name when re-publishing externally.


        Note: legacy `tutor_reviews` migrated into `session_feedback` carry a
        NULL

        organization_id (they predate org scoping) and are intentionally NOT
        returned

        here — they belong to no org. Backfilling them to a tutor's *current*
        org would

        mis-attribute pre-org personal reviews, so the exclusion is by design.
      operationId: list_session_feedback_v1_session_feedback_get
      parameters:
        - name: tutor_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tutor user UUID
            title: Tutor Id
          description: Filter by tutor user UUID
        - name: public_only
          in: query
          required: false
          schema:
            type: boolean
            description: Only feedback the author made public
            default: false
            title: Public Only
          description: Only feedback the author made public
        - name: anonymize
          in: query
          required: false
          schema:
            type: boolean
            description: Return reviewer initials instead of full names
            default: false
            title: Anonymize
          description: Return reviewer initials instead of full names
        - 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_SessionFeedback_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Page_SessionFeedback_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/SessionFeedback'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/PageMeta'
      type: object
      required:
        - data
        - meta
      title: Page[SessionFeedback]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SessionFeedback:
      properties:
        id:
          type: string
          title: Id
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
        tutor_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tutor Id
        rating:
          type: integer
          title: Rating
        recommend:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Recommend
        prepared:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Prepared
        positive_tags:
          items:
            type: string
          type: array
          title: Positive Tags
          default: []
        improve_tags:
          items:
            type: string
          type: array
          title: Improve Tags
          default: []
        comment:
          anyOf:
            - type: string
            - type: 'null'
          title: Comment
        is_public:
          type: boolean
          title: Is Public
          default: false
        reviewer_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Reviewer Role
        reviewer_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Reviewer Name
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
        - rating
      title: SessionFeedback
    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
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Org API key as `Token token=ei_live_...`

````