You are here

public function ZoomAPIMeeting::get in Zoom API 7

Get Meeting Info.

Parameters

string $meeting_id: The zoom generated meeting ID.

string $host_zoom_user_id: The host user ID.

Return value

array An array containing the meeting details.

File

includes/zoomapi.meeting.classes.inc, line 128
Meeting classes for Zoom API.

Class

ZoomAPIMeeting
Zoom API Meeting Class.

Code

public function get($meeting_id, $host_zoom_user_id) {
  $data = [
    'id' => $meeting_id,
    'host_id' => $host_zoom_user_id,
  ];
  return $this
    ->sendRequest('meeting/get', $data);
}