> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scoutforschools.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get enrollment invitations



## OpenAPI

````yaml /api-reference/openapi.json get /enrollment/invitations
openapi: 3.1.0
info:
  title: Scout API
  version: 1.0.0
  description: >-
    Programmatic access to Scout rostering data (IMS OneRoster 1.1 & 1.2) and
    related endpoints, authenticated with an API access token.
servers:
  - url: https://api.teachwithscout.com/v1
    description: Production
security: []
paths:
  /enrollment/invitations:
    get:
      summary: Get enrollment invitations
      parameters:
        - in: query
          name: filters
          schema:
            type: string
        - in: query
          name: sorts
          schema:
            type: string
        - in: query
          name: search
          schema:
            type: string
        - in: query
          name: page
          schema:
            type: number
        - in: query
          name: pageSize
          schema:
            type: number
        - in: query
          name: groupBy
          schema:
            type: string
        - in: query
          name: includeAvailableFilters
          schema:
            type: boolean
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      x-scout-ref: >-
                        @scout/models/EnrollmentInvitation/EnrollmentInvitationQueryModel.yaml
                  meta:
                    x-scout-ref: '@scout/models/TableView/TableMeta.yaml'
                required:
                  - data
                  - meta
      security:
        - accessToken: []
components:
  securitySchemes:
    accessToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer access token obtained from the OneRoster token endpoint. Send it
        as `Authorization: Bearer <access_token>` on every request. Tokens
        expire after 1 hour.

````