Netter folders API

The folders API from Netter — 3 operation(s) for folders.

Operations 5

GET /api/v1/folders/ List Folders #
POST /api/v1/folders/ Create Folder #
PATCH /api/v1/folders/{folder_id} Update Folder #
DELETE /api/v1/folders/{folder_id} Delete Folder #
PATCH /api/v1/folders/{folder_id}/move Move Folder #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/netter-folders-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

netter-folders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DMI Backend actions Folders API
  version: 0.1.0
servers:
- url: https://api.netter.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: folders
paths:
  /api/v1/folders/:
    get:
      tags:
      - folders
      summary: List Folders
      description: 'List all folders for the current company (flat list, clients build tree from parent_folder_id).


        Non-owners see only folders they have at least VIEWER access to.'
      operationId: list_folders_api_v1_folders__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/FolderRead'
                type: array
                title: Response List Folders Api V1 Folders  Get
    post:
      tags:
      - folders
      summary: Create Folder
      description: Create a new folder (optionally nested under a parent).
      operationId: create_folder_api_v1_folders__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FolderCreate'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FolderRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/folders/{folder_id}:
    patch:
      tags:
      - folders
      summary: Update Folder
      description: Rename a folder.
      operationId: update_folder_api_v1_folders__folder_id__patch
      parameters:
      - name: folder_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Folder Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FolderUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FolderRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - folders
      summary: Delete Folder
      description: 'Delete a folder.


        Child folders and projects are promoted to the deleted folder''s parent

        (or root if the deleted folder had no parent). Nothing is ever deleted

        as a side-effect.'
      operationId: delete_folder_api_v1_folders__folder_id__delete
      parameters:
      - name: folder_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Folder Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/folders/{folder_id}/move:
    patch:
      tags:
      - folders
      summary: Move Folder
      description: 'Move a folder to a new parent (or to root if parent_folder_id is null).


        Returns 409 if the move would create a circular reference.'
      operationId: move_folder_api_v1_folders__folder_id__move_patch
      parameters:
      - name: folder_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Folder Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FolderMove'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FolderRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    FolderCreate:
      properties:
        name:
          type: string
          title: Name
        parent_folder_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Parent Folder Id
      type: object
      required:
      - name
      title: FolderCreate
    FolderUpdate:
      properties:
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
      type: object
      title: FolderUpdate
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FolderMove:
      properties:
        parent_folder_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Parent Folder Id
      type: object
      title: FolderMove
    FolderRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        company_id:
          type: string
          format: uuid
          title: Company Id
        user_id:
          type: string
          format: uuid
          title: User Id
        name:
          type: string
          title: Name
        parent_folder_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Parent Folder Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
      - id
      - company_id
      - user_id
      - name
      - parent_folder_id
      - created_at
      - updated_at
      title: FolderRead