MonoCloud Management SDK
    Preparing search index...

    Interface EmailIdentifierVerificationOptions

    Email Identifier Verification Options Response: Represents email verification settings applied during sign-up.

    EmailIdentifierVerificationOptions

    interface EmailIdentifierVerificationOptions {
        allow_cross_browser: boolean;
        code_length: number;
        expiry: number;
        verification_type: VerificationTypes;
        verify_at_sign_up: boolean;
    }
    Index

    Properties

    allow_cross_browser: boolean

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

    EmailIdentifierVerificationOptions

    code_length: number

    Specifies the number of digits in the email verification code.

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

    EmailIdentifierVerificationOptions

    expiry: number

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

    EmailIdentifierVerificationOptions

    verification_type: VerificationTypes

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

    EmailIdentifierVerificationOptions

    verify_at_sign_up: boolean

    Specifies whether the user's email address must be verified during sign-up.

    EmailIdentifierVerificationOptions