MonoCloud Management SDK
    Preparing search index...

    Interface PatchEmailIdentifierVerificationOptionsRequest

    Patch Email Identifier Verification Options Request: Used to update email address verification settings.

    PatchEmailIdentifierVerificationOptionsRequest

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

    PatchEmailIdentifierVerificationOptionsRequest

    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.

    PatchEmailIdentifierVerificationOptionsRequest

    expiry?: number

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

    Pro plan required to customize the expiry.

    PatchEmailIdentifierVerificationOptionsRequest

    verification_type?: VerificationTypes

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

    PatchEmailIdentifierVerificationOptionsRequest

    verify_at_sign_up?: boolean

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

    PatchEmailIdentifierVerificationOptionsRequest