action microsoft_list_events { label: "List events" description: "List events in the signed-in user's default calendar." provider: microsoft method: GET path: "/v1.0/me/events" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of events to return." }, "$skip": { "type": "integer", "description": "Number of events to skip for paging." }, "$filter": { "type": "string", "description": "OData filter, e.g. start/dateTime ge '2026-07-01'." }, "$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" }, "organizer": { "type": "object" }, "webLink": { "type": "string" } } } }, "@odata.nextLink": { "type": "string" } } } } }