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

# Create Workflow Folder

> Create a workflow folder. Optional `parent_folder_id` nests it under another folder.



## OpenAPI

````yaml POST /workflow/folder/
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/folder/:
    post:
      tags:
        - workflow
      summary: Create Workflow Folder
      description: >-
        Create a workflow folder. Optional `parent_folder_id` nests it under
        another folder.
      operationId: workflow_folder_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WorkflowFolderCreateRequestRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/WorkflowFolderCreateRequestRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/WorkflowFolderCreateRequestRequest'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: Folder created.
        '400':
          description: '`name` was missing.'
        '404':
          description: Parent folder not found.
      security:
        - jwtAuth: []
components:
  schemas:
    WorkflowFolderCreateRequestRequest:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        parent_folder_id:
          type: string
          format: uuid
          nullable: true
      required:
        - name
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````