MonoCloud Management SDK
    Preparing search index...

    Interface PatchEmailAuthenticatorOptionsRequest

    Patch Email Authenticator Options Request: Used to partially update email-based authentication configuration.

    PatchEmailAuthenticatorOptionsRequest

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

    PatchEmailAuthenticatorOptionsRequest

    code_length?: number

    Specifies the number of digits in the email verification code.

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

    PatchEmailAuthenticatorOptionsRequest

    enable_jit_provisioning?: boolean

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

    PatchEmailAuthenticatorOptionsRequest

    enable_sign_in?: boolean

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

    PatchEmailAuthenticatorOptionsRequest

    enable_sign_up?: boolean

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

    PatchEmailAuthenticatorOptionsRequest

    expiry?: number

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

    Pro plan required to customize the expiry.

    PatchEmailAuthenticatorOptionsRequest

    verification_type?: VerificationTypes

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

    PatchEmailAuthenticatorOptionsRequest