action microsoft_get_page_content { label: "Get page content" description: "Fetch the HTML content of a OneNote page. Returns HTML text, not JSON." provider: microsoft method: GET path: "/v1.0/me/onenote/pages/{page_id}/content" scopes: ["Notes.Read"] input: @json { { "type": "object", "required": ["page_id"], "additionalProperties": false, "properties": { "page_id": { "type": "string", "description": "OneNote page id." } } } } }