action citrixonline_get_groups_group_key_historical_meetings { label: "Get historical meetings by group" description: "Get historical meetings for the specified group that started within the specified date/time range. This API call is only available to users with the admin role. This API call is restricted to groups with a maximum of 50 organizers. Remark: Meetings which are still ongoing at the time of the request are NOT contained in the result array." provider: citrixonline method: GET path: "/groups/{groupKey}/historicalMeetings" encoding: json input: { type: "object" properties: { endDate: { type: "string" } startDate: { type: "string" } } required: ["endDate", "startDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }