action microsoft_update_calendar { label: "Update calendar" description: "Rename or recolor a calendar." provider: microsoft method: PATCH path: "/v1.0/me/calendars/{calendar_id}" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["calendar_id"], "additionalProperties": false, "properties": { "calendar_id": { "type": "string", "description": "Id of the calendar to update." }, "name": { "type": "string" }, "color": { "type": "string" } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } } }