read-note
Retrieve the full contents of a note by ID, with optional embedded template instructions for fill-out guidance.
Instructions
Retrieve the complete contents of the note by its ID from the database. A note created from a template has a sourceTemplateId; when present, the response includes a resource link to that source template, whose body holds the fill-out instructions and examples. Read the template (or pass includeTemplate: true) before completing the note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| noteId | Yes | ID of the note to retrieve. It can be found as `_id` in the note docs. It always starts with `note:`. | |
| includeTemplate | No | When true and the note has a `sourceTemplateId`, also fetch that template and embed its body (the fill-out instructions and examples) as an extra text block, so you get the note and its template in one call. |