Onenote Get Page
onenote_get_pageRetrieve a read-only plain-text view of a OneNote page using its pageId, with a flag when content like tables or images is not fully represented.
Instructions
Fetch full, read-only text detail for a single OneNote page by
its pageId (as returned by onenote_search). Never mutates any
notebook/section/page state.
bodyText is a FLATTENED plain-text reading view of the page —
bullets, indentation, tables and images render as plain lines. It
is not the storage format: onenote_update_page appends and never
writes this flattened text back over the page, so reading a
formatted page is always safe. bodyTextIncomplete: true means
the page contains tables, images or ink that this flattened view
cannot represent — the page holds more than you are seeing;
updating it is still safe. lastModifiedDateTime is the value
onenote_update_page's conflict guard expects — pass it back
exactly as returned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageId | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| page_id | Yes | ||
| body_text | Yes | ||
| section_id | No | ||
| notebook_id | No | ||
| section_name | Yes | ||
| last_modified | No | ||
| notebook_name | Yes | ||
| body_text_incomplete | No |