Class EmailVerificationTicketRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
public class EmailVerificationTicketRequest
- Inheritance
-
EmailVerificationTicketRequest
- Inherited Members
Properties
ClientId
ID of the client. If provided for tenants using the New Universal Login experience, the user will be prompted to redirect to the default login route of the corresponding application once the ticket is used. See Configuring Default Login Routes for more details.
[JsonProperty("client_id")]
public string ClientId { get; set; }
Property Value
Identity
Sets the identity. Needed to verify primary identities when using social, enterprise, or passwordless connections. It is also required to verify secondary identities.
[JsonProperty("identity")]
public EmailVerificationIdentity Identity { get; set; }
Property Value
OrganizationId
The organization ID.
[JsonProperty("organization_id")]
public string OrganizationId { get; set; }
Property Value
ResultUrl
The user will be redirected to this endpoint once the ticket is used.
[JsonProperty("result_url")]
public string ResultUrl { get; set; }
Property Value
Ttl
The ticket's lifetime in seconds starting from the moment of creation. After expiration the ticket can not be used to verify the users's email. If not specified or if you send 0 the Auth0 default lifetime will be applied
[JsonProperty("ttl_sec")]
public int Ttl { get; set; }
Property Value
UserId
The user ID for which the ticket is to be created.
[JsonProperty("user_id")]
public string UserId { get; set; }