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

# List Organization User Invitations

> List all invitations a user has received



## OpenAPI

````yaml /openapi.json get /auth/organization/list-user-invitations
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:
  /auth/organization/list-user-invitations:
    get:
      tags:
        - Organization Management
      summary: List Organization User Invitations
      description: List all invitations a user has received
      operationId: listOrganizationUserInvitations
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    email:
                      type: string
                    role:
                      type: string
                    organizationId:
                      type: string
                    organizationName:
                      type: string
                    inviterId:
                      type: string
                      description: The ID of the user who created the invitation
                    teamId:
                      type:
                        - string
                        - 'null'
                      description: The ID of the team associated with the invitation
                    status:
                      type: string
                    expiresAt:
                      type: string
                    createdAt:
                      type: string
                  required:
                    - id
                    - email
                    - role
                    - organizationId
                    - organizationName
                    - inviterId
                    - status
                    - expiresAt
                    - createdAt
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````