action microsoft_list_section_pages { label: "List section pages" description: "List the pages in a specific OneNote section." provider: microsoft method: GET path: "/v1.0/me/onenote/sections/{section_id}/pages" scopes: ["Notes.Read"] input: @json { { "type": "object", "required": ["section_id"], "additionalProperties": false, "properties": { "section_id": { "type": "string", "description": "Section id." }, "$top": { "type": "integer", "description": "Maximum number of pages to return." }, "$orderby": { "type": "string", "description": "Sort order, e.g. lastModifiedDateTime desc." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "title": { "type": "string" }, "links": { "type": "object" }, "lastModifiedDateTime": { "type": "string" } } } } } } } }