---
title: "Update Note"
method: PATCH
path: "/api/v1/notes/{note_id}"
tags: ["Notes"]
---

# Update Note

`PATCH /api/v1/notes/{note_id}`

## Path parameters

- `note_id` string, uuid, required

## Headers

- `Idempotency-Key` string, nullable

## Request body

- NoteUpdateRequest
  - `title` string, nullable
  - `body` string, nullable

## Response `200`

Successful Response

- NoteResponse
  - `id` string, uuid, required
  - `organization_id` string, required
  - `created_by` string, required
  - `title` string, nullable, required
  - `body` string, required
  - `status` 'active' | 'paused' | 'deleted', required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `access` NoteAccessResponse[] — Raw ``note_access`` rows for this note, inlined so the console can skip a follow-up ``GET /notes/{id}/access`` per row. Empty when the note has zero grants (typical for human-authored notes); not a 'not loaded' sentinel — every response path populates this field.
    - `id` string, uuid, required
    - `note_id` string, uuid, required
    - `identity_id` string, uuid, required
    - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error
- `4XX` — Client error with Support Agent information.
- `5XX` — Server error with Support Agent information.

---

[API](https://skmtc.dev/inkbox/apis/inkbox-api.md) · [All operations](https://skmtc.dev/inkbox/apis/inkbox-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/inkbox/inkbox-api/revisions/31f357e7e6f8/schema)
