MonoCloud Management SDK
    Preparing search index...

    Interface AddPhoneRequest

    Add Phone Request: Used to add a new phone number for a user account.

    AddPhoneRequest

    interface AddPhoneRequest {
        is_verified?: boolean;
        phone_number: string;
        skip_restriction_checks?: boolean;
    }
    Index

    Properties

    is_verified?: boolean

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

    AddPhoneRequest

    phone_number: string

    The phone number to add to the user’s account in E.164 format.

    AddPhoneRequest

    skip_restriction_checks?: boolean

    Allows bypassing blocklist validation for the provided phone number.

    AddPhoneRequest