You are here

function bbb_api_isMeetingRunning in BigBlueButton 6

Same name in this branch
  1. 6 includes/api-0.64.bbb.inc \bbb_api_isMeetingRunning()
  2. 6 includes/api-0.7.bbb.inc \bbb_api_isMeetingRunning()
Same name and namespace in other branches
  1. 7 includes/api.bbb.inc \bbb_api_isMeetingRunning()

Is meeting running (isMeetingRunning)

This call enables you to simply check on whether or not a meeting is running by looking it up with your meeting ID.

Parameters

ARRAY $params: Associative array of additional url parameters. Components:

  • meetingID: STRING (REQUIRED) The meeting ID that identifies the meeting you are attempting to check on.

Return value

BOOLEAN A string of either “true” or “false” that signals whether a meeting with this ID or token is currently running.

See also

http://code.google.com/p/bigbluebutton/wiki/API#Is_meeting_running_(isMeetingRunning)

File

includes/api-0.7.bbb.inc, line 144
Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.

Code

function bbb_api_isMeetingRunning($params) {
  $query_string = bbb_api_generate_querystring(BBB_API_IS_MEETING_RUNNING, $params);
  $request = BBB_API_BASE_URL . BBB_API_IS_MEETING_RUNNING . '?' . $query_string;
  return bbb_api_execute_query($request);
}