Registration

ClickMeeting allows attendees registration, turn on registration if you would like participants to register before attending the conference. Using API you are able to register new attendees, receive list of all registered participants.

Start the ClickMeeting Rest Client

Before you start calling any API session methods, please make sure that you have properly initiated the ClickMeeting Rest Client. 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'})