You are here

public function ZoomAPIUser::update in Zoom API 7

Update User.

Parameters

string $zoom_user_id: The user ID generated when the user account was created.

array $options: An array of the optional user configuration options.

Return value

array Array containing date/time updated.

File

includes/zoomapi.user.classes.inc, line 167
User classes for Zoom API.

Class

ZoomAPIUser
Zoom API User Class.

Code

public function update($zoom_user_id, array $options) {
  $options['id'] = $zoom_user_id;
  return $this
    ->sendRequest('user/update', $options);
}