MonoCloud Management SDK
    Preparing search index...

    Interface RecoveryMethodsEmailOptions

    Recovery Methods Email Options Response: Represents the email-based account and password recovery configuration.

    RecoveryMethodsEmailOptions

    interface RecoveryMethodsEmailOptions {
        allow_cross_browser: boolean;
        code_length: number;
        enabled: boolean;
        expiry: number;
        verification_type: VerificationTypes;
    }
    Index

    Properties

    allow_cross_browser: boolean

    Specifies whether the password recovery flow can be resumed in a different browser or device than where it was initiated.

    RecoveryMethodsEmailOptions

    code_length: number

    Specifies the number of digits in the email recovery verification code.

    Only applicable when the verification type includes code-based recovery.

    RecoveryMethodsEmailOptions

    enabled: boolean

    Enables account and password recovery using email-based verification.

    RecoveryMethodsEmailOptions

    expiry: number

    Specifies the validity period of the email recovery verification link or code (in seconds).

    RecoveryMethodsEmailOptions

    verification_type: VerificationTypes

    Specifies the verification mechanism used for email password recovery (link, code, or both).

    RecoveryMethodsEmailOptions