Table of Contents

Class VerifyEmailJobRequest

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

Contains details for sending an email address verification link.

public class VerifyEmailJobRequest
Inheritance
VerifyEmailJobRequest
Inherited Members

Properties

ClientId

The id of the client, if not provided the global one will be used

[JsonProperty("client_id")]
public string ClientId { get; set; }

Property Value

string

Identity

The primary identity to verify when using social, enterprise, or passwordless connections. It is also required to verify secondary identities.

[JsonProperty("identity")]
public EmailVerificationIdentity Identity { get; set; }

Property Value

EmailVerificationIdentity

OrganizationId

ID of the organization.

[JsonProperty("organization_id")]
public string OrganizationId { get; set; }

Property Value

string

Remarks

If provided, the organization_id and organization_name will be included as query arguments in the link back to the application.

UserId

The identifier of the user to whom the email will be sent.

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

Property Value

string