PDF report

PDF report that contains event session details can be received using API conferenceSessionGeneratePDF method, room ID and session ID number is required.

We receive “NEW” status if the report haven’t been generated yet. Another request returns „IN PROGRESS”. „FINISHED” means that the report was successfully generated.

1
2
3
4
5
6
try {
    $report = $client->generateConferenceSessionPDF($room_id, $session_id);
} catch (Exception $e) {
     // handle exceptions here
}
$url = $report->url;
1
2
3
4
5
6
begin
    sessions = client.generateConferenceSessionPDF(room_id, session_id)
rescue ClickMeeting::ClientError => e
    # handle exceptions here
end
url = report['url']
1
2
3
4
5
6
try:
    sessions = client.generateConferenceSessionPDF(room_id, session_id)
except Exception, e:
    # handle exceptions here
url = report['url']

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