Table of Contents

Class SignupUserRequest

Namespace
Auth0.AuthenticationApi.Models
Assembly
Auth0.AuthenticationApi.dll

Represents a request to sign up a new user.

public class SignupUserRequest : UserMaintenanceRequestBase
Inheritance
SignupUserRequest
Inherited Members

Properties

FamilyName

Family name for this user.

[JsonProperty("family_name")]
public string FamilyName { get; set; }

Property Value

string

GivenName

Given name for this user.

[JsonProperty("given_name")]
public string GivenName { get; set; }

Property Value

string

Name

Name of this user.

[JsonProperty("name")]
public string Name { get; set; }

Property Value

string

Nickname

Nickname of this user.

[JsonProperty("nickname")]
public string Nickname { get; set; }

Property Value

string

Password

Initial password for this user.

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

Property Value

string

Picture

URL to a picture of this user.

[JsonProperty("picture")]
public Uri Picture { get; set; }

Property Value

Uri

UserMetadata

Metadata the user has read/write access to.

[JsonProperty("user_metadata")]
public dynamic UserMetadata { get; set; }

Property Value

dynamic

Username

Username of this user. Only valid if the connection requires a username.

[JsonProperty("username")]
public string Username { get; set; }

Property Value

string