update_note
Update an existing note. Use fetch_notes first to get the note_token. Supports partial updates. HTML tags: h1-h6, p, a, br, strong, i, ul, ol, li. No scripts/iframes. Do NOT use between sections.
update_note
When to use
Update an existing note. Use fetch_notes first to get the note_token. Supports partial updates. HTML tags: h1-h6, p, a, br, strong, i, ul, ol, li. No scripts/iframes. Do NOT use between sections.
Parameters to validate before calling
note_token (string, required) — The note token to update (UUID format)
title (string, optional) — New title (max 100 characters, must be unique)
content (string, optional) — New content (max 100,000 characters, will be encrypted). Allowed HTML: -, , , , , , , , . No scripts, iframes, or executable code.
pinned (boolean, optional) — Pin or unpin the note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title (max 100 characters, must be unique) | |
| pinned | No | Pin or unpin the note | |
| content | No | New content (max 100,000 characters, will be encrypted). Allowed HTML: <h1>-<h6>, <p>, <a>, <br>, <strong>, <i>, <ul>, <ol>, <li>. No scripts, iframes, or executable code. | |
| note_token | Yes | The note token to update (UUID format) |