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

# Create a folder

> Creates a folder. Pass `parent_folder_id` to nest it inside an existing folder.

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled/folders.yaml POST /folders
openapi: 3.0.3
info:
  title: NeetoRecord Folders APIs
  version: 2.0.0
servers:
  - description: NeetoRecord APIs
    url: https://{your-subdomain}.neetorecord.com/api/external/v2
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Folders
    description: APIs to list and create the folders that recordings are organized into.
paths:
  /folders:
    post:
      tags:
        - Folders
      summary: Create a folder
      description: >-
        Creates a folder. Pass `parent_folder_id` to nest it inside an existing
        folder.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - $ref: '#/components/parameters/accept_header'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - folder
              properties:
                folder:
                  type: object
                  required:
                    - name
                  properties:
                    name:
                      type: string
                      description: Name of the folder.
                      example: Onboarding
                    parent_folder_id:
                      type: string
                      description: >-
                        Folder to nest the new folder under. Accepts the `id`
                        returned by the List folders API.
                      example: hqzptnv
      responses:
        '200':
          description: The folder was created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/folder_create_response'
              example:
                id: wbrkxdm
                name: Onboarding
                parent_id: hqzptnv
                created_at: '2026-02-14T08:12:03.000Z'
        '404':
          description: The parent folder does not exist in this workspace.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error'
              example:
                error: RecordingFolder does not exist.
        '422':
          description: The request body is missing the `folder` key or the folder `name`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error'
              example:
                error: 'param is missing or the value is empty or invalid: name'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        API key. Refer to [Authentication](/getting-started/authentication) for
        more information.
      required: true
      schema:
        type: string
    accept_header:
      in: header
      name: Accept
      description: Must be `application/json`.
      required: true
      schema:
        type: string
        enum:
          - application/json
        default: application/json
  schemas:
    folder_create_response:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the folder.
          example: wbrkxdm
        name:
          type: string
          description: Name of the folder.
          example: Onboarding
        parent_id:
          type: string
          nullable: true
          description: Identifier of the parent folder, or `null` for a top level folder.
          example: hqzptnv
        created_at:
          type: string
          format: date-time
          description: Timestamp when the folder was created.
          example: '2026-02-14T08:12:03.000Z'
    error:
      type: object
      properties:
        error:
          type: string
          description: A human readable error message.

````