public function ZoomAPIRecording::get in Zoom API 7
Get Recording.
@todo Appears this is looking for the uuid which is not what the docs describe.
Parameters
string $meeting_id: The zoom meeting ID.
Return value
array The meeting recording information.
File
- includes/
zoomapi.recording.classes.inc, line 58 - Recording classes for Zoom API.
Class
- ZoomAPIRecording
- Zoom API Recording Class.
Code
public function get($meeting_id) {
$options['meeting_id'] = $meeting_id;
return $this
->sendRequest('recording/get', $options);
}