edit_note
Modify existing notes in Joplin by updating titles, content (Markdown or HTML), parent notebooks, or todo status for improved organization and productivity.
Instructions
Edit/update an existing note in Joplin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | New note content in Markdown | |
body_html | No | New note content in HTML | |
is_todo | No | Whether this is a todo note | |
note_id | Yes | ID of the note to edit | |
parent_id | No | New parent notebook ID | |
title | No | New note title | |
todo_completed | No | Whether todo is completed | |
todo_due | No | Todo due date (Unix timestamp) |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "New note content in Markdown",
"type": "string"
},
"body_html": {
"description": "New note content in HTML",
"type": "string"
},
"is_todo": {
"description": "Whether this is a todo note",
"type": "boolean"
},
"note_id": {
"description": "ID of the note to edit",
"type": "string"
},
"parent_id": {
"description": "New parent notebook ID",
"type": "string"
},
"title": {
"description": "New note title",
"type": "string"
},
"todo_completed": {
"description": "Whether todo is completed",
"type": "boolean"
},
"todo_due": {
"description": "Todo due date (Unix timestamp)",
"type": "number"
}
},
"required": [
"note_id"
],
"type": "object"
}