Table of Contents

Class UserCreateRequest

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Represents the request to create a User.

public class UserCreateRequest : UserBase
Inheritance
UserCreateRequest
Inherited Members

Properties

Connection

Gets or sets the connection the user belongs to.

[JsonProperty("connection")]
public string Connection { get; set; }

Property Value

string

Password

Gets or sets the user's password. This is mandatory only for auth0 connection strategy.

[JsonProperty("password")]
public string Password { get; set; }

Property Value

string

UserId

Gets or sets the (optional) id of the user

[JsonProperty("user_id")]
public string UserId { get; set; }

Property Value

string

VerifyEmail

Gets or sets whether the user's email change must be verified. True if it must be verified, otherwise false.

[JsonProperty("verify_email")]
public bool? VerifyEmail { get; set; }

Property Value

bool?