# Update Note

`lawmatics_update-note` · Lawmatics MCP tool · Notes

Update an existing note in Lawmatics by ID. Provide a new title and/or body.

## Input

- **noteId** `string` (required, pattern: ^\d+$) — ID of the note to update; a numeric string
- **title** `string` — New title/subject for the note
- **body** `string` — New body content for the note

## Output

- **id** `string` (required) — Unique ID of the note
- **title** `string | null` (required) — Title/subject of the note; null if unset
- **body** `string | null` (required) — Body content of the note; null if unset
- **createdAt** `string | null` (required) — When the note was created, as an ISO 8601 timestamp; null if unknown
- **updatedAt** `string | null` (required) — When the note was last updated, as an ISO 8601 timestamp; null if unknown
- **relationships** `object` (required) — JSON:API relationship pointers as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get tool (e.g. type 'prospect' -> get-matter, 'contact' -> get-contact, 'user' -> get-user).
  - **notable** `object | null` (required) — Pointer to the record this note is attached to (e.g. type 'prospect', 'contact', 'company'); null when unreported
    - **id** `string` (required) — ID of the referenced Lawmatics record
    - **type** `string` (required) — JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
  - **createdBy** `object | null` (required) — Pointer to the user who authored the note (type 'user'); null when unset or unreported
    - **id** `string` (required) — ID of the referenced Lawmatics record
    - **type** `string` (required) — JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
