action citrixonline_get_historical_meetings { label: "Get historical meetings" description: "Get historical meetings for the currently authenticated organizer that started within the specified date/time range. Remark: Meetings which are still ongoing at the time of the request are NOT contained in the result array." provider: citrixonline method: GET path: "/historicalMeetings" encoding: json input: { type: "object" properties: { endDate: { type: "string" } startDate: { type: "string" } } required: ["endDate", "startDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }