action microsoft_list_notebook_sections { label: "List notebook sections" description: "List the sections in a specific OneNote notebook." provider: microsoft method: GET path: "/v1.0/me/onenote/notebooks/{notebook_id}/sections" scopes: ["Notes.Read"] input: @json { { "type": "object", "required": ["notebook_id"], "additionalProperties": false, "properties": { "notebook_id": { "type": "string", "description": "Notebook id." }, "$top": { "type": "integer", "description": "Maximum number of sections to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "parentNotebook": { "type": "object" } } } } } } } }