write_note
Overwrite an existing note's full content (full REPLACE, not append) (Replaces the entire content of a note you own — the 'content' field overwrites the whole note body. There is no append mode. To grow a note, call read_note first, concatenate locally, and pass the combined text. Requires docking.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Replacement content for the note. This REPLACES the entire note body — there is no append mode. To grow a note, call read_note first and pass the combined text. | |
| note_id | Yes | UUID of the note to overwrite | |
| session_id | Yes | Your session ID from login/register |