action microsoft_list_sections { label: "List sections" description: "List OneNote sections across the signed-in user's notebooks." provider: microsoft method: GET path: "/v1.0/me/onenote/sections" scopes: ["Notes.Read"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of sections to return." }, "$filter": { "type": "string", "description": "OData filter, e.g. parentNotebook/id eq '...'." } } } } 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" } } } } } } } }