action microsoft_get_calendar_view { label: "Get calendar view" description: "List calendar events within a time window, with recurring events expanded to occurrences." provider: microsoft method: GET path: "/v1.0/me/calendarView" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["startDateTime", "endDateTime"], "additionalProperties": false, "properties": { "startDateTime": { "type": "string", "description": "Window start in ISO 8601, e.g. 2026-07-15T00:00:00Z." }, "endDateTime": { "type": "string", "description": "Window end in ISO 8601." }, "$top": { "type": "integer", "description": "Maximum number of events to return." }, "$select": { "type": "string", "description": "Comma-separated list of properties to return." }, "$orderby": { "type": "string", "description": "Sort order, e.g. start/dateTime asc." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "start": { "type": "object" }, "end": { "type": "object" }, "location": { "type": "object" }, "webLink": { "type": "string" } } } }, "@odata.nextLink": { "type": "string" } } } } }