action microsoft_list_event_instances { label: "List event instances" description: "List the occurrences of a recurring event within a time window." provider: microsoft method: GET path: "/v1.0/me/events/{event_id}/instances" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["event_id", "startDateTime", "endDateTime"], "additionalProperties": false, "properties": { "event_id": { "type": "string", "description": "Id of the recurring series master event." }, "startDateTime": { "type": "string", "description": "Window start in ISO 8601." }, "endDateTime": { "type": "string", "description": "Window end in ISO 8601." }, "$top": { "type": "integer", "description": "Maximum number of occurrences to return." } } } } 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" }, "type": { "type": "string" } } } } } } } }