public function ZoomAPIUser::create in Zoom API 7
Create User.
Parameters
string $email: The email to assign to the account.
int $type: The type of account to create:
- 1: Basic user.
- 2: Pro user.
- 3: Corp user.
array $options: An array of the optional user configuration options.
Return value
array The created user account.
File
- includes/
zoomapi.user.classes.inc, line 32 - User classes for Zoom API.
Class
- ZoomAPIUser
- Zoom API User Class.
Code
public function create($email, $type, $options = []) {
$options['email'] = $email;
$options['type'] = $type;
return $this
->sendRequest('user/create', $options);
}