Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

ScreenMembersOnEmailVerificationResult
Example
export interface ScreenMembersOnEmailVerificationResult extends ScreenMembers {
  /**
   * Screen-specific data containing the status of the email verification.
   * @type {{ status: string; } | null}
   */
  data: {
    /**
     * The status of the email verification process.
     * Possible values might include "success", "failure", "already_verified", etc.
     * This status should be displayed to the user to inform them of the outcome.
     */
    status: string;
  } | null;

  /**
   * Navigation links available on this screen.
   * @type {string | null}
   */
  loginLink: string | null;
}

Properties

captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
status
Screen-specific data.

Type Declaration

{ status: string; }

status

The status of the email verification process. Possible values might include “success”, “failure”, “already_verified”, etc. This status should be displayed to the user to inform them of the outcome.null
isCaptchaAvailable
boolean
Navigation links available on this screen.
Navigation links available on this screen.
name
string
texts
Record