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

# List Workflow Folders

> Return the company's workflow folder tree (recursive nesting). Each folder also includes a `workflow_count` (non-deleted workflows directly inside).



## OpenAPI

````yaml GET /workflow/folder/
openapi: 3.1.0
info:
  title: Aidan API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.callaidan.com
security: []
tags:
  - name: Webhooks
    description: >-
      **Inbound notifications.** After a voice call ends, Aidan POSTs JSON to
      the Webhook URL on your agent (Voice Agents settings or `webhook_url`).
      Your server receives these requests — they are not calls *to*
      `api.callaidan.com`. The documented path `/_reference/webhooks/...` exists
      only in this spec so the payload schema can appear in the API Reference;
      it is not callable on the production API.
paths:
  /workflow/folder/:
    get:
      tags:
        - workflow
      summary: List Workflow Folders
      description: >-
        Return the company's workflow folder tree (recursive nesting). Each
        folder also includes a `workflow_count` (non-deleted workflows directly
        inside).
      operationId: workflow_folder_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowFolderListResponse'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    WorkflowFolderListResponse:
      type: object
      properties:
        folders:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: >-
            Recursive tree starting from root folders. Each node has
            `child_folders[]`.
      required:
        - folders
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````