@cfxlabsinc/b2b-services
    Preparing search index...

    Interface PersonalBeneficiaryInput

    createPersonalBeneficiary arguments — CONFIRMED AGAINST LIVE INTROSPECTION.

    The individual counterpart of BusinessBeneficiaryInput, and NOT interchangeable with it: a natural person registered through the business mutation would reach RouteFusion with their name in business_name, which is wrong data on a payments provider's KYC record, not a cosmetic mismatch. mintRouteFusionBeneficiary branches on the instrument's beneficiary type for exactly that reason.

    Note country here where the business input has business_country — this is the person's country of residence.

    interface PersonalBeneficiaryInput {
        account_number?: string;
        account_type?: RouteFusionAccountType;
        address1?: string;
        address2?: string;
        bank_address1?: string;
        bank_address2?: string;
        bank_city?: string;
        bank_country: string;
        bank_name?: string;
        bank_postal_code?: string;
        bank_state_province_region?: string;
        branch_name?: string;
        city?: string;
        country: string;
        currency: string;
        date_of_birth?: string;
        email: string;
        first_name: string;
        intermediary_bank_id?: string;
        last_name: string;
        name_on_bank_account?: string;
        phone?: string;
        phone_country?: string;
        postal_code?: string;
        purpose_of_payment?: string;
        residency?: string;
        routing_code?: string;
        sector_of_economics?: string;
        state_province_region?: string;
        swift_bic?: string;
        tax_number?: string;
    }
    Index
    account_number?: string
    account_type?: RouteFusionAccountType
    address1?: string
    address2?: string
    bank_address1?: string
    bank_address2?: string
    bank_city?: string
    bank_country: string
    bank_name?: string
    bank_postal_code?: string
    bank_state_province_region?: string
    branch_name?: string
    city?: string
    country: string
    currency: string
    date_of_birth?: string
    email: string
    first_name: string
    intermediary_bank_id?: string
    last_name: string
    name_on_bank_account?: string
    phone?: string
    phone_country?: string
    postal_code?: string
    purpose_of_payment?: string
    residency?: string
    routing_code?: string
    sector_of_economics?: string
    state_province_region?: string
    swift_bic?: string
    tax_number?: string