action microsoft_get_calendar { label: "Get calendar" description: "Fetch a calendar by id." provider: microsoft method: GET 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": "Calendar id." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "isDefaultCalendar": { "type": "boolean" }, "canEdit": { "type": "boolean" }, "owner": { "type": "object" } } } } }