action microsoft_accept_event { label: "Accept event" description: "Accept a meeting invitation." provider: microsoft method: POST path: "/v1.0/me/events/{event_id}/accept" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["event_id"], "additionalProperties": false, "properties": { "event_id": { "type": "string", "description": "Id of the event to accept." }, "comment": { "type": "string", "description": "Response message to the organizer." }, "sendResponse": { "type": "boolean", "description": "Send a response to the organizer (default true)." } } } } }