Click or drag to resize

IZoomCreateUser Method

Creates a user. Calls POST /users.
Uses "custCreate" for action and type "basic". May allow different settings in the future. Note that at this time only the email, fist_name, last_name, and password can be set here. To set other user settings, such as dept, use UpdateUser(User, ZoomUserOptions) after creation.

Namespace:  NetQuarry.Services.Zoom
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
User CreateUser(
	User input,
	ZoomUserOptions options = 
)

Parameters

input
Type: NetQuarry.Services.ZoomUser
User information. Required field(s): email. Optional: first_name, last_name.
options (Optional)
Type: NetQuarry.Services.ZoomZoomUserOptions
Options affecting how the user is created.

Return Value

Type: User
Object with id, email and type set. first_name and last_name may be set.
See Also