Class UserUpdateRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Represents the request to update a User.
public class UserUpdateRequest : UserBase
- Inheritance
-
UserUpdateRequest
- Inherited Members
Properties
ClientId
Gets or sets the Auth0 clientID. Only useful when updating the email.
[JsonProperty("client_id")]
public string ClientId { get; set; }
Property Value
Connection
Gets or sets the connection the user belongs to.
[JsonProperty("connection")]
public string Connection { get; set; }
Property Value
Password
Gets or sets the user's password. This is mandatory on non-SMS connections.
[JsonProperty("password")]
public string Password { get; set; }
Property Value
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?
VerifyPassword
Gets or sets whether the user's password change needs to be verified via email. True if it must be verified, otherwise false.
[JsonProperty("verify_password")]
public bool? VerifyPassword { get; set; }
Property Value
- bool?
VerifyPhoneNumber
Gets or sets whether the user's phone number change needs to be verified via email. True if it must be verified, otherwise false.
[JsonProperty("verify_phone_number")]
public bool? VerifyPhoneNumber { get; set; }
Property Value
- bool?