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

    Interface RouteFusionFundingInstructions

    Every field RouteFusion's FundingInstructions type carries, confirmed by live introspection (__type(name:"FundingInstructions"), 2026-08-30).

    All of them, deliberately. This started as the eleven fields a US wire strictly needs, which quietly discarded both postal addresses, the depositor message, routing_code_alternate and tax_number — data RouteFusion had already returned and that nothing else can reconstruct after the fact. A funding instruction is what someone wires money against, so the record of what the provider said should be complete rather than sufficient.

    qr is null on wire/ACH rails; it carries the image for the rails that are funded by scanning one.

    interface RouteFusionFundingInstructions {
        account_holder_address1: string | null;
        account_holder_address2: string | null;
        account_holder_city: string | null;
        account_holder_country: string | null;
        account_holder_name: string | null;
        account_holder_postal_code: string | null;
        account_holder_state_province_region: string | null;
        account_number: string | null;
        bank_address1: string | null;
        bank_address2: string | null;
        bank_city: string | null;
        bank_country: string | null;
        bank_name: string | null;
        bank_postal_code: string | null;
        bank_state_province_region: string | null;
        currency: string | null;
        message: string | null;
        qr: RouteFusionQrFundingInstructions | null;
        reference: string | null;
        routing_code: string | null;
        routing_code_alternate: string | null;
        swift_bic: string | null;
        tax_number: string | null;
        type: string | null;
    }
    Index
    account_holder_address1: string | null
    account_holder_address2: string | null
    account_holder_city: string | null
    account_holder_country: string | null
    account_holder_name: string | null
    account_holder_postal_code: string | null
    account_holder_state_province_region: string | null
    account_number: string | null
    bank_address1: string | null
    bank_address2: string | null
    bank_city: string | null
    bank_country: string | null
    bank_name: string | null
    bank_postal_code: string | null
    bank_state_province_region: string | null
    currency: string | null
    message: string | null

    Depositor-facing guidance, e.g. where to put the reference.

    reference: string | null
    routing_code: string | null
    routing_code_alternate: string | null

    A second routing code where the rail has one (e.g. wire vs ACH).

    swift_bic: string | null
    tax_number: string | null
    type: string | null