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

# List Workflows

> List workflows + folder tree for the company. Pass `quick=true` for an id/name-only flat list (used in pickers). Folder filtering: `folder_id=null` for root, a UUID for a specific folder. `include_workflows=false` returns folders without paginated workflows.



## OpenAPI

````yaml GET /workflow/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /workflow/:
    get:
      tags:
        - workflow
      summary: List Workflows
      description: >-
        List workflows + folder tree for the company. Pass `quick=true` for an
        id/name-only flat list (used in pickers). Folder filtering:
        `folder_id=null` for root, a UUID for a specific folder.
        `include_workflows=false` returns folders without paginated workflows.
      operationId: workflow_retrieve
      parameters:
        - in: query
          name: folder_id
          schema:
            type: string
          description: Folder UUID, or `null` for root.
        - in: query
          name: include_workflows
          schema:
            type: boolean
            default: true
        - in: query
          name: page
          schema:
            type: integer
            default: 1
        - in: query
          name: page_size
          schema:
            type: integer
            default: 20
        - in: query
          name: quick
          schema:
            type: boolean
            default: false
        - in: query
          name: search
          schema:
            type: string
          description: Partial match on name (and description for the full list).
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowListResponse'
          description: >-
            Folder + workflow list. With `quick=true`, returns `{ workflows:
            [{id, name}] }`.
      security:
        - jwtAuth: []
components:
  schemas:
    WorkflowListResponse:
      type: object
      properties:
        folders:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: Folder tree (root only) or direct children of `folder_id`.
        workflows:
          type: array
          items:
            type: object
            additionalProperties: {}
        pagination:
          type: object
          additionalProperties: {}
          description: '`{ page, page_size, total, total_pages }`.'
      required:
        - folders
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````