Get session

For receiving particular session details, we need the session ID number. We can find it on a list of all room sessions:

1
2
3
4
5
try {
    $sessions = $client->conferenceSessions($room_id);
} catch (Exception $e) {
     // handle exceptions here
}
1
2
3
4
5
begin
    sessions = client.conferenceSessions(room_id)
rescue ClickMeeting::ClientError => e
    # handle exceptions here
end
1
2
3
4
5
try:
    sessions = client.conferenceSessions(room_id)
except Exception, e:
    # handle exceptions here

Now we can get particular session details using conferenceSession method as follows.

1
2
3
4
5
try {
    $session = $client->conferenceSession($room_id, $session_id);
} catch (Exception $e) {
     // handle exceptions here
}
1
2
3
4
5
begin
    session = client.conferenceSession(room_id, session_id)
rescue ClickMeeting::ClientError => e
    # handle exceptions here
end
1
2
3
4
5
try:
    session = client.conferenceSession(room_id, session_id)
except Exception, e:
    # handle exceptions here

You can find more detailed descriptions in the API Function Reference manual.