action microsoft_list_calendar_events { label: "List calendar events" description: "List events in a specific calendar." provider: microsoft method: GET path: "/v1.0/me/calendars/{calendar_id}/events" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["calendar_id"], "additionalProperties": false, "properties": { "calendar_id": { "type": "string", "description": "Calendar id." }, "$top": { "type": "integer", "description": "Maximum number of events to return." }, "$filter": { "type": "string", "description": "OData filter expression." }, "$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" }, "webLink": { "type": "string" } } } }, "@odata.nextLink": { "type": "string" } } } } }