update_note
Modify the content of a specific note in TriliumNext by providing the note ID and new content, ensuring your knowledge base stays current and accurate.
Instructions
Update the content of an existing note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The new content for the note (max 1MB) | |
| noteId | Yes | The ID of the note to update |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The new content for the note (max 1MB)",
"type": "string"
},
"noteId": {
"description": "The ID of the note to update",
"type": "string"
}
},
"required": [
"noteId",
"content"
],
"type": "object"
}