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

# Preview Invite

> Public preview of a pending invite for the accept page. No auth — the
token itself is the capability.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/external/invites/{token}
openapi: 3.1.0
info:
  title: Lyceum Cloud Execution API
  version: 0.1.0
servers: []
security: []
paths:
  /api/v2/external/invites/{token}:
    get:
      tags:
        - Org Invites
      summary: Preview Invite
      description: |-
        Public preview of a pending invite for the accept page. No auth — the
        token itself is the capability.
      operationId: preview_invite_api_v2_external_invites__token__get
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
            title: Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvitePreview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    InvitePreview:
      properties:
        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_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Invited By Email
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - org_id
        - org_slug
        - org_name
        - email
        - role
        - created_at
      title: InvitePreview
      description: Public preview of an invite, served unauthenticated to the accept page.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OrgRole:
      type: string
      enum:
        - owner
        - admin
        - member
      title: OrgRole
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````