ClickMeeting API allows to receive list of all registered participants of a particular room on your account. You can provide additional parameter status that determines if all or just active registrants are returned:
1 2 3 4 5 |
try { $registrations = $client->conferenceRegistrations($room_id, 'all'); } catch (Exception $e) { // handle exceptions here } |
1 2 3 4 5 |
begin registrations = client.conferenceRegistrations(room_id, 'all') rescue ClickMeeting::ClientError => e # handle exceptions here end |
1 2 3 4 5 |
try: registrations = client.conferenceRegistrations(room_id, 'all') except Exception, e: # handle exceptions here |
For retrieving particular room session registered participants use conferenceSessionRegistrations method as follows.
1 2 3 4 5 |
try { $registrations = $client->conferenceSessionRegistrations($room_id, $session_id); } catch (Exception $e) { // handle exceptions here } |
1 2 3 4 5 |
begin registrations = client.conferenceSessionRegistrations(room_id, session_id) rescue ClickMeeting::ClientError => e # handle exceptions here end |
1 2 3 4 5 |
try: registrations = client.conferenceSessionRegistrations(room_id, session_id) except Exception, e: # handle exceptions here |
You can find more detailed descriptions in the API Function Reference manual.