Storage

ClickMeeting API allows to manage all of your files and recordings on your account. You can easly upload and download your files from file library.

Start the ClickMeeting Rest Client

Before you start calling any API methods regarding event operations, please make sure that you have properly initiated the ClickMeeting Rest Client. It’s very easy, simply include a proper file and provide your user API key.

1
2
3
include_once ('ClickMeetingRestClient.php');

$client = new ClickMeetingRestClient(array( 'api_key' => 'API KEY') ) ;
1
2
3
require_relative 'ClickMeetingRestClient'

client = ClickMeeting::ClickMeetingRestClient.new({'api_key' => 'API KEY'})
1
2
3
from ClickMeetingRestClient import ClickMeetingRestClient

client = ClickMeetingRestClient({'api_key' : 'API KEY'})