Conferences

The main function of API is to create and manage meetings and webinars without having to log in to the specific ClickMeeting account. This provides an easy way to integrate ClickMeeting with your own solution. For example, you could charge fees for accessing your webinars with the use of tokens or passwords. This is one of many possible uses of API.

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" => "MY_API_KEY"})
1
2
3
from ClickMeetingRestClient import ClickMeetingRestClient

client = ClickMeetingRestClient({'api_key' : 'MY_API_KEY'})