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.

ScreenMembersOnMfaRecoveryCodeChallengeNewCode
Example
export interface ScreenMembersOnMfaRecoveryCodeChallengeNewCode extends ScreenMembers {
  /**
   * @property {object | null} data - Screen-specific data.
   * @property {string} data.textCode - The newly generated recovery code that the user must save.
   */
  data: {
    /**
     * The newly generated recovery code to display to the user.
     * It is crucial that the user saves this code securely as it will be needed for future logins if other MFA factors are unavailable.
     */
    textCode: string;
  } | null;
}

Properties

captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
textCode

Type Declaration

{ textCode: string; }

textCode

The newly generated recovery code to display to the user. It is crucial that the user saves this code securely as it will be needed for future logins if other MFA factors are unavailable.null
isCaptchaAvailable
boolean
name
string
texts
Record