MonoCloud Management SDK
    Preparing search index...

    Interface EmailAuthenticatorOptions

    Email Authenticator Options Response: Represents the configuration for email-based authentication.

    EmailAuthenticatorOptions

    interface EmailAuthenticatorOptions {
        allow_cross_browser: boolean;
        code_length: number;
        enable_jit_provisioning: boolean;
        enable_sign_in: boolean;
        enable_sign_up: boolean;
        expiry: number;
        verification_type: VerificationTypes;
    }
    Index

    Properties

    allow_cross_browser: boolean

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

    EmailAuthenticatorOptions

    code_length: number

    Specifies the number of digits in the email verification code.

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

    EmailAuthenticatorOptions

    enable_jit_provisioning: boolean

    Specifies whether users can be automatically provisioned on first successful email authentication (Just-In-Time provisioning).

    EmailAuthenticatorOptions

    enable_sign_in: boolean

    Specifies whether users can sign in using email-based authentication.

    EmailAuthenticatorOptions

    enable_sign_up: boolean

    Specifies whether new users can sign up using email-based authentication.

    EmailAuthenticatorOptions

    expiry: number

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

    EmailAuthenticatorOptions

    verification_type: VerificationTypes

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

    EmailAuthenticatorOptions