action microsoft_create_notebook { label: "Create notebook" description: "Create a OneNote notebook for the signed-in user." provider: microsoft method: POST path: "/v1.0/me/onenote/notebooks" scopes: ["Notes.Create"] input: @json { { "type": "object", "required": ["displayName"], "additionalProperties": false, "properties": { "displayName": { "type": "string", "description": "Notebook name. Must be unique; most punctuation is not allowed." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "links": { "type": "object" } } } } }