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

# List folders

> List folders for organizing projects within an organization. Note: Folder hierarchy structure is TBD.



## OpenAPI

````yaml api-docs/archived/organizations.json get /v1/regions/global/organizations/folders
openapi: 3.1.1
info:
  title: Organizations API
  version: 1.0.0
  description: >-
    Organizations API for the k0rdent Enterprise platform. Provides organization
    lifecycle management, project grouping, invitations, quotas, and folder
    hierarchy.
  contact:
    name: k0rdent Enterprise API Support
    email: api-support@example.com
    url: https://support.example.com
  license:
    name: Proprietary
    url: https://k0rdent.example.com/license
servers:
  - url: ''
    description: For documentation only
  - url: https://api.example.com
    description: Arc API Base URL
  - url: https://api.internal.example.com
    description: Atlas API Base URL
  - url: http://localhost:{port}
    description: Local Development
    variables:
      port:
        default: '4010'
        description: Organizations service port
security: []
paths:
  /v1/regions/global/organizations/folders:
    get:
      tags:
        - Folders
      summary: List folders
      description: >-
        List folders for organizing projects within an organization. Note:
        Folder hierarchy structure is TBD.
      operationId: listFolders
      responses:
        '200':
          description: List of folders
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Folder'
components:
  schemas:
    Folder:
      type: object
      description: Folder for organizing projects (stub — hierarchy TBD)
      properties:
        id:
          type: string
          description: Folder identifier
        name:
          type: string
          description: Folder name
        parentId:
          type: string
          nullable: true
          description: Parent folder identifier (null for root)
        organizationId:
          type: string
          description: Owning organization
        createdAt:
          type: string
          format: date-time
      required:
        - id
        - name
        - organizationId

````