---
title: "Update note"
method: PATCH
path: "/notes/{id}"
tags: ["Notes"]
---

# Update note

`PATCH /notes/{id}`

Update a note's title, content, or folder. All fields are optional — only provided fields are updated.

## Path parameters

- `id` string, uuid, required

## Request body

- object
  - `title` string, nullable — New title.
  - `content` string, nullable — New content.
  - `enhanced_content` string, nullable — New enhanced content.
  - `folder_id` string, uuid, nullable — Move to a different folder.

## Response `200`

Updated 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

- `404` — Note not found.

---

[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)
