action citrixonline_get_meetings_meeting_id_attendees { label: "Get attendees by meeting" description: "List all attendees for specified meetingId of historical meeting. The historical meetings can be fetched using 'Get historical meetings', 'Get historical meetings by organizer', and 'Get historical meetings by group'. For users with the admin role this call returns attendees for any meeting. For any other user the call will return attendees for meetings on which the user is a valid organizer." provider: citrixonline method: GET path: "/meetings/{meetingId}/attendees" encoding: json input: { type: "object" properties: { meetingId: { type: "string" } } required: ["meetingId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }