Recordings

API allows to receive list of all recordings of a particular room. Every returned position contains recording ID number and recording_url parameter. Recording_url It will be required to download particular recording file from your account. Each download url expires after 5 minutes.

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

Now, when we know the recording ID number we can delete by using deleteRecording method.

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

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


Additional information on licences used in ClickMeeting may be obtained here.