List of session attendees could be received using conferenceSessionAttendees, room ID and session ID number will be needed to perform request. Method returns event attendee details and polls result if present.
1 2 3 4 5 |
try { $attendees = $client->conferenceSessionAttendees($room_id, $session_id); } catch (Exception $e) { // handle exceptions here } |
1 2 3 4 5 |
begin sessions = client.conferenceSessionAttendees(room_id, session_id) rescue ClickMeeting::ClientError => e # handle exceptions here end |
1 2 3 4 5 |
try: sessions = client.conferenceSessionAttendees(room_id, session_id) except Exception, e: # handle exceptions here |
You can find more detailed descriptions in the API Function Reference manual.