MonoCloud Management SDK
    Preparing search index...

    Interface AddEmailRequest

    Add Email Request: Used to add a new email address for a user account.

    AddEmailRequest

    interface AddEmailRequest {
        email: string;
        is_verified?: boolean;
        skip_restriction_checks?: boolean;
    }
    Index

    Properties

    email: string

    The email address to add to the user’s account.

    AddEmailRequest

    is_verified?: boolean

    Indicates whether the email should be marked as verified when added. Verification may be required before the email can be used in login or recovery flows.

    AddEmailRequest

    skip_restriction_checks?: boolean

    Allows bypassing blocklist validation for the provided email.

    AddEmailRequest