delete_note
Remove a note from Joplin using the note ID. Optionally delete permanently for complete removal. Returns operation status for confirmation.
Instructions
Delete a note from Joplin.
Args:
note_id: ID of note to delete
permanent: If True, permanently delete the note
Returns:
Dictionary containing the operation status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes | ||
permanent | No |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"title": "Note Id",
"type": "string"
},
"permanent": {
"default": false,
"title": "Permanent",
"type": "boolean"
}
},
"required": [
"note_id"
],
"title": "delete_noteArguments",
"type": "object"
}