You are here

public function ZoomAPIUser::updatepassword in Zoom API 7

Update User Password.

Parameters

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

string $password: The user password.

Return value

array Array containing date/time updated.

File

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

Class

ZoomAPIUser
Zoom API User Class.

Code

public function updatepassword($zoom_user_id, $password) {
  $data = [
    'id' => $zoom_user_id,
    'password' => $password,
  ];
  return $this
    ->sendRequest('user/updatepassword', $data);
}