> ## 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 Organization Full Organization

> Get the full organization



## OpenAPI

````yaml /openapi.json get /auth/organization/get-full-organization
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/get-full-organization:
    get:
      tags:
        - Organization Management
      summary: Get Organization Full Organization
      description: Get the full organization
      operationId: getOrganizationFullOrganization
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema: {}
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````