get_note
Retrieve detailed information about a specific note from your TriliumNext knowledge base by providing its unique note ID.
Instructions
Get details of a specific note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | The ID of the note to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"noteId": {
"description": "The ID of the note to retrieve",
"type": "string"
}
},
"required": [
"noteId"
],
"type": "object"
}