MonoCloud Management SDK
    Preparing search index...

    Interface PatchPasswordAuthenticatorOptionsRequest

    Patch Password Authenticator Options Request: Used to partially update password-based authentication configuration.

    PatchPasswordAuthenticatorOptionsRequest

    interface PatchPasswordAuthenticatorOptionsRequest {
        enable_sign_in?: boolean;
        enable_sign_up?: boolean;
        expiry?: number | null;
        prompt_password_on_initial_screen?: boolean;
        reuse?: PatchPasswordReuseOptionsRequest;
        strength?: PatchPasswordStrengthOptionsRequest;
    }
    Index

    Properties

    enable_sign_in?: boolean

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

    PatchPasswordAuthenticatorOptionsRequest

    enable_sign_up?: boolean

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

    PatchPasswordAuthenticatorOptionsRequest

    expiry?: number | null

    Specifies the password expiration interval (in days). When empty, passwords do not expire.

    PatchPasswordAuthenticatorOptionsRequest

    prompt_password_on_initial_screen?: boolean

    Specifies whether the password is collected on the initial sign-in screen alongside the identifier.

    PatchPasswordAuthenticatorOptionsRequest

    Password reuse policy configuration.

    PatchPasswordAuthenticatorOptionsRequest

    Password strength policy configuration.

    Pro plan required to customize password strength options.

    PatchPasswordAuthenticatorOptionsRequest