action microsoft_delete_event { label: "Delete event" description: "Delete a calendar event." provider: microsoft method: DELETE path: "/v1.0/me/events/{event_id}" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["event_id"], "additionalProperties": false, "properties": { "event_id": { "type": "string", "description": "Id of the event to delete." } } } } }