Table of Contents

Class CreateVerificationEmailRequestContent

Namespace
Auth0.ManagementApi.Jobs
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record CreateVerificationEmailRequestContent : IEquatable<CreateVerificationEmailRequestContent>
Inheritance
CreateVerificationEmailRequestContent
Implements
Inherited Members
Extension Methods

Properties

ClientId

client_id of the client (application). If no value provided, the global Client ID will be used.

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

Property Value

string

Identity

[JsonPropertyName("identity")]
public Identity? Identity { get; set; }

Property Value

Identity

OrganizationId

(Optional) Organization ID – the ID of the Organization. If provided, organization parameters will be made available to the email template and organization branding will be applied to the prompt. In addition, the redirect link in the prompt will include organization_id and organization_name query string parameters.

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

Property Value

string

UserId

user_id of the user to send the verification email to.

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

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.