action microsoft_update_event { label: "Update event" description: "Update properties of an existing calendar event." provider: microsoft method: PATCH 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 update." }, "subject": { "type": "string" }, "body": { "type": "object", "properties": { "contentType": { "type": "string", "enum": ["text", "html"] }, "content": { "type": "string" } } }, "start": { "type": "object", "properties": { "dateTime": { "type": "string" }, "timeZone": { "type": "string" } } }, "end": { "type": "object", "properties": { "dateTime": { "type": "string" }, "timeZone": { "type": "string" } } }, "location": { "type": "object", "properties": { "displayName": { "type": "string" } } }, "attendees": { "type": "array", "items": { "type": "object" } }, "isAllDay": { "type": "boolean" }, "reminderMinutesBeforeStart": { "type": "integer" } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "webLink": { "type": "string" } } } } }