ClickMeeting API allows to receive list of all rooms on your account. Conference rooms that are inactive for more than 6 months will be removed from the list automatically and stored in a ClickMeeting database. As you can see, retrieving list of you events is very easy:
1 2 3 4 5 |
try { $conferences = $client->conferences('active'); } catch (Exception $e) { // handle exceptions here } |
1 2 3 4 5 |
begin conferences = client.conferences('active') rescue ClickMeeting::ClientError => e # handle exceptions here end |
1 2 3 4 5 |
try: conferences = client.conferences('active') except Exception, e: # handle exceptions here |
For retrieving particular conference room use conference method as follows.
1 2 3 4 5 |
try { $conference = $client->conference($room_id); } catch (Exception $e) { // handle exceptions here } |
1 2 3 4 5 |
begin conference = client.conference(room_id) rescue ClickMeeting::ClientError => e # handle exceptions here end |
1 2 3 4 5 |
try: conference = client.conference(room_id) except Exception, e: # handle exceptions here |
You can find more detailed descriptions in the API Function Reference manual.