You are here

function zoomapi_create_instant_meeting_for_user in Zoom API 7.2

Create Instant Meeting for User.

File

./zoomapi.module, line 648
Main file for the Zoom API module.

Code

function zoomapi_create_instant_meeting_for_user($account_uid, array $params = []) {
  $params['type'] = ZOOMAPI_MEETING_TYPE_INSTANT;
  return zoomapi_create_meeting_for_entity($account_uid, 'user', $params);
}