action microsoft_get_notebook { label: "Get notebook" description: "Fetch a OneNote notebook by id." provider: microsoft method: GET path: "/v1.0/me/onenote/notebooks/{notebook_id}" scopes: ["Notes.Read"] input: @json { { "type": "object", "required": ["notebook_id"], "additionalProperties": false, "properties": { "notebook_id": { "type": "string", "description": "Notebook id." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "links": { "type": "object" }, "lastModifiedDateTime": { "type": "string" } } } } }