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

# Reject Organization Invitation

> Reject an invitation to an organization



## OpenAPI

````yaml /openapi.json post /auth/organization/reject-invitation
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/reject-invitation:
    post:
      tags:
        - Organization Management
      summary: Reject Organization Invitation
      description: Reject an invitation to an organization
      operationId: rejectOrganizationInvitation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                invitationId:
                  type: string
                  description: The ID of the invitation to reject
              required:
                - invitationId
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  invitation:
                    type: object
                    additionalProperties: {}
                  member:
                    type:
                      - object
                      - 'null'
                    additionalProperties: {}
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````