Dotfile Notes API

The Notes API from Dotfile — 2 operation(s) for notes.

Operations 2

POST /v1/notes Create a note #
POST /v1/notes/{id}/comments Create a note comment #

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/dotfile-notes-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

dotfile-notes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dotfile Notes API
  description: Dotfile public API — Notes operations. Split by tag from the OpenAPI Dotfile publishes at https://docs.dotfile.com/openapi/%EF%B8%8F-api-specifications.json (discovered via https://docs.dotfile.com/.well-known/api-catalog). Content is verbatim; only the tag partition is ours.
  version: v1
  contact:
    name: Dotfile Support
    email: support@dotfile.com
    url: https://docs.dotfile.com/reference/getting-help
servers:
- url: https://api.dotfile.com
  description: Production environment
security:
- DotfileAPIKey: []
tags:
- name: Notes
paths:
  /v1/notes:
    post:
      operationId: note-create-one-note
      summary: Create a note
      description: 'Create a note in a case.


        '
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NoteCreate'
            examples:
              note_plain_text:
                summary: Create a plain text note
                value:
                  case_id: ba883bef-60fd-42d0-a447-7b7c987c3155
                  content: This is a note!
              note_html:
                summary: Create a HTML note
                value:
                  case_id: ba883bef-60fd-42d0-a447-7b7c987c3155
                  content: <p>This is a <strong>important</strong><br /></p><ul><li>Some bullet point</li><li><i>supporting some format</i></li></ul>
              note_html_with_link:
                summary: Create a HTML note with link
                value:
                  case_id: ba883bef-60fd-42d0-a447-7b7c987c3155
                  content: <p>This is a <a href="https://dotfile.com" target="_blank" rel="noreferrer">link</a></p>
              note_html_with_mention:
                summary: Create a HTML note with mention
                value:
                  case_id: ba883bef-60fd-42d0-a447-7b7c987c3155
                  content: <p>This will mention <span data-type="mention" data-id="user:d86b5c10-db43-4021-86b2-6c27df7819b0"></span> and sent him a notification</p>
      responses:
        '201':
          description: 'Note has been created in the case


            **ℹ️ Click to see full payload**'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
        '400':
          description: "The request is either malformed or contain invalid parameters.\n\n  - Make sure the identifier specified in the URL is a valid UUID\n  - Make sure the body payload matches the expected schema\n  - Maximum items reached (default: 25). Contact us at support@dotfile.com if you need more items.\n  "
        '404':
          description: No case can be found.
      tags:
      - Notes
  /v1/notes/{id}/comments:
    post:
      operationId: note-create-one-note-comment
      summary: Create a note comment
      description: 'Create a comment on a note.


        '
      parameters:
      - name: id
        required: true
        in: path
        description: Id of the note comment
        schema:
          format: uuid
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NoteCommentCreate'
            examples:
              comment_plain_text:
                summary: Create a plain text comment
                value:
                  content: This is a comment!
              comment_html:
                summary: Create a HTML comment
                value:
                  content: <p>This is a <strong>important</strong><br /></p><ul><li>Some bullet point</li><li><i>supporting some format</i></li></ul>
              comment_html_with_link:
                summary: Create a HTML comment with link
                value:
                  content: <p>This is a <a href="https://dotfile.com" target="_blank" rel="noreferrer">link</a></p>
              comment_html_with_mention:
                summary: Create a HTML comment with mention
                value:
                  content: <p>This will mention <span data-type="mention" data-id="user:d86b5c10-db43-4021-86b2-6c27df7819b0"></span> and sent him a notification</p>
      responses:
        '201':
          description: 'Comment has been created on the note


            **ℹ️ Click to see full payload**'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NoteComment'
        '400':
          description: "The request is either malformed or contain invalid parameters.\n\n  - Make sure the identifier specified in the URL is a valid UUID\n  - Make sure the body payload matches the expected schema\n  - Maximum items reached (default: 50). Contact us at support@dotfile.com if you need more items.\n  "
        '404':
          description: No note can be found.
      tags:
      - Notes
components:
  securitySchemes:
    DotfileAPIKey:
      type: apiKey
      in: header
      name: X-DOTFILE-API-KEY
      description: Configure your api key in the Workspace settings