-
Notifications
You must be signed in to change notification settings - Fork 198
API Delete Recordings
Ghazi Triki edited this page Oct 18, 2018
·
1 revision
use BigBlueButton\BigBlueButton;
use BigBlueButton\Parameters\DeleteRecordingsParameters;
$bbb = new BigBlueButton();
$deleteRecordingsParams= new DeleteRecordingsParameters($recordingID); // get from "Get Recordings"
$response = $bbb->deleteRecordings($deleteRecordingsParams);
if ($response->getReturnCode() == 'SUCCESS') {
// recording deleted
} else {
// something wrong
}
Getting Started
Configuration
API Calls
-
Administration
-
Monitoring
-
Recording
-
Samples
External Links