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