addNoteToPage
Add a note, todo, important, or question to a specified OneNote page. Choose the position (top or bottom) and type of note for organization and clarity within your notebook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note | Yes | The note/comment content. | |
noteType | No | Type of note (note, todo, important, question). | note |
pageId | Yes | The ID of the page to add a note to. | |
position | No | Position to add the note (top or bottom). | bottom |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"note": {
"description": "The note/comment content.",
"type": "string"
},
"noteType": {
"default": "note",
"description": "Type of note (note, todo, important, question).",
"enum": [
"note",
"todo",
"important",
"question"
],
"type": "string"
},
"pageId": {
"description": "The ID of the page to add a note to.",
"type": "string"
},
"position": {
"default": "bottom",
"description": "Position to add the note (top or bottom).",
"enum": [
"top",
"bottom"
],
"type": "string"
}
},
"required": [
"pageId",
"note"
],
"type": "object"
}