---
title: "Create note"
method: POST
path: "/notes/create"
tags: ["Notes"]
---

# Create note

`POST /notes/create`

Create a new note.

## Request body

- object
  - `content` string, required — The note body text.
  - `title` string, nullable — Optional title.
  - `enhanced_content` string, nullable — Cleaned or enhanced version.
  - `note_type` 'personal' | 'meeting' | 'upload' — Type of note.
  - `folder_id` string, uuid, nullable — Target folder ID.

## Response `201`

Created note.

- object
  - `data` Note
    - `id` string, uuid
    - `user_id` string
    - `client_note_id` string, nullable
    - `title` string, nullable
    - `content` string
    - `enhanced_content` string, nullable
    - `note_type` 'personal' | 'meeting' | 'upload'
    - `folder_id` string, uuid, nullable
    - `participants` string, nullable — JSON-serialized list of meeting participants (read-only; populated by the desktop sync layer for meeting notes).
    - `calendar_event_id` string, nullable — Linked calendar event ID (read-only; populated by the desktop sync layer when a recording is started from a calendar event).
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — Validation error.

---

[API](https://skmtc.net/openwhispr/apis/openwhispr-api.md) · [All operations](https://skmtc.net/openwhispr/apis/openwhispr-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openwhispr/openwhispr-api/versions/d1578f9ae6e5/schema)
