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