MonoCloud Management SDK
    Preparing search index...

    Interface PatchRecoveryMethodsEmailOptionsRequest

    Patch Email Recovery Method Options Request: Used to update email-based account and password recovery configuration.

    PatchRecoveryMethodsEmailOptionsRequest

    interface PatchRecoveryMethodsEmailOptionsRequest {
        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.

    PatchRecoveryMethodsEmailOptionsRequest

    code_length?: number

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

    Only applicable when the verification type includes code-based recovery. Pro plan required to customize the code length.

    PatchRecoveryMethodsEmailOptionsRequest

    enabled?: boolean

    Enables account and password recovery using email-based verification.

    PatchRecoveryMethodsEmailOptionsRequest

    expiry?: number

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

    Pro plan required to customize the expiry.

    PatchRecoveryMethodsEmailOptionsRequest

    verification_type?: VerificationTypes

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

    PatchRecoveryMethodsEmailOptionsRequest