You are here

function bbb_api_getMeetings in BigBlueButton 6

Same name in this branch
  1. 6 includes/api-0.64.bbb.inc \bbb_api_getMeetings()
  2. 6 includes/api-0.7.bbb.inc \bbb_api_getMeetings()

Get Meetings (getMeetings)

This call will return a list of all the meetings found on this server.

Parameters

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

  • random: STRING (REQUIRED) This can be any value. It must be supplied so that we can use your security salt and do a checksum verification that you are the server's owner. This is for security purposes. If you do not supply the random parameter, the call will fail immediately.

Return value

OBJECT or FALSE

See also

http://code.google.com/p/bigbluebutton/wiki/API#Get_Meetings_(getMeetings)

File

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

Code

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