PHP code example of john_zuk / php-click-meeting-api
1. Go to this page and download the library: Download john_zuk/php-click-meeting-api library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
john_zuk / php-click-meeting-api example snippets
// This file is generated by Composer
nt->authenticate('YourAPIKeyHere');
$client->conferences()->add([
'name' => 'test',
'room_type' => 'webinar',
'permanent_room' => 0,
'access_type' => 3,
'registration' => [
'enabled' => true,
],
]);
$client->conferences()->edit(321321, [
'name' => 'test-edit',
]);
$client->conferences()->delete(321321);