action microsoft_list_notebooks { label: "List notebooks" description: "List the signed-in user's OneNote notebooks." provider: microsoft method: GET path: "/v1.0/me/onenote/notebooks" scopes: ["Notes.Read"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of notebooks to return." }, "$filter": { "type": "string", "description": "OData filter expression." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "links": { "type": "object" }, "lastModifiedDateTime": { "type": "string" } } } } } } } }