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

# List My Pending Invites

> Pending invites for the caller's email. Tokens not returned — accept via
POST /invites/mine/{invite_id}/accept.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/external/invites/mine
openapi: 3.1.0
info:
  title: Lyceum Cloud API
  version: 0.1.0
servers:
  - url: https://api.lyceum.technology
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v2/external/invites/mine:
    get:
      tags:
        - Org Invites
      summary: List My Pending Invites
      description: |-
        Pending invites for the caller's email. Tokens not returned — accept via
        POST /invites/mine/{invite_id}/accept.
      operationId: list_my_pending_invites_api_v2_external_invites_mine_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/OrgInviteResponse'
                type: array
                title: >-
                  Response List My Pending Invites Api V2 External Invites Mine
                  Get
components:
  schemas:
    OrgInviteResponse:
      properties:
        id:
          type: string
          title: Id
        org_id:
          type: string
          title: Org Id
        org_slug:
          type: string
          title: Org Slug
        org_name:
          type: string
          title: Org Name
        email:
          type: string
          title: Email
        role:
          $ref: '#/components/schemas/OrgRole'
        invited_by:
          type: string
          title: Invited By
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - org_id
        - org_slug
        - org_name
        - email
        - role
        - invited_by
        - created_at
      title: OrgInviteResponse
      description: A pending invite to an org for an email that has no Lyceum user yet.
    OrgRole:
      type: string
      enum:
        - owner
        - admin
        - member
      title: OrgRole
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass an API key (prefixed `lk_`) or a JWT access token as a bearer
        token. Generate API keys in the dashboard at
        https://dashboard.lyceum.technology/api-keys.

````