-
Notifications
You must be signed in to change notification settings - Fork 198
API Get Meeting Info
Ghazi Triki edited this page Jun 2, 2020
·
2 revisions
use BigBlueButton\BigBlueButton;
use BigBlueButton\Parameters\GetMeetingInfoParameters;
$bbb = new BigBlueButton();
$getMeetingInfoParams = new GetMeetingInfoParameters($meetingID, $moderator_password);
$response = $bbb->getMeetingInfo($getMeetingInfoParams);
if ($response->getReturnCode() == 'FAILED') {
// meeting not found or already closed
} else {
// process $response->getRawXml();
}
Getting Started
Configuration
API Calls
-
Administration
-
Monitoring
-
Recording
-
Samples
External Links