public function ZoomAPIUser::get in Zoom API 7
Get User Info.
Parameters
string $zoom_user_id: The user ID generated when the user account was created.
Return value
array The created user account.
File
- includes/
zoomapi.user.classes.inc, line 149 - User classes for Zoom API.
Class
- ZoomAPIUser
- Zoom API User Class.
Code
public function get($zoom_user_id) {
$data = [
'id' => $zoom_user_id,
];
return $this
->sendRequest('user/get', $data);
}