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

# Get pending invitations

> Get the current user's unexpired, unaccepted invitations. Returns an empty list until the user's email is verified.



## OpenAPI

````yaml /openapi.json get /invitation/pending
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /invitation/pending:
    get:
      tags:
        - Invitations
      summary: Get pending invitations
      description: >-
        Get the current user's unexpired, unaccepted invitations. Returns an
        empty list until the user's email is verified.
      operationId: getUserPendingInvitations
      responses:
        '200':
          description: List of pending invitations
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PendingInvitation'
        '401':
          description: Missing or invalid credentials
components:
  schemas:
    PendingInvitation:
      type: object
      properties:
        id:
          type: string
        email:
          type: string
        workspaceId:
          type: string
        workspaceName:
          type: string
        inviterName:
          type: string
        expiresAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        status:
          type: string
          description: Always `pending` here; expired and accepted ones are filtered out.
      required:
        - id
        - email
        - workspaceId
        - workspaceName
        - inviterName
        - expiresAt
        - createdAt
        - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````