update_note
Modify the content of a specific note by providing the note ID and new text. Ensures accurate updates within the TriliumNext Notes system.
Instructions
Update the content of an existing note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | New content for the note | |
noteId | Yes | ID of the note to update |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New content for the note",
"type": "string"
},
"noteId": {
"description": "ID of the note to update",
"type": "string"
}
},
"required": [
"noteId",
"content"
],
"type": "object"
}