action citrixonline_get_organizers_organizer_key_attendees { label: "Get attendees by organizer" description: "Lists all attendees for all meetings within a specified date range for a specified organizer. This API call is only available to users with the admin role." provider: citrixonline method: GET path: "/organizers/{organizerKey}/attendees" encoding: json input: { type: "object" properties: { endDate: { type: "string" } startDate: { type: "string" } } required: ["endDate", "startDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }