Documentation
Beneficiaries
US Beneficiaries

US Beneficiary

Before making a payment to a US bank account, you are to add a beneficiary.

Sample request for adding a US Beneficiary

cURL
curl --location --globoff '{{sandboxURL}}/beneficiaries' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer {{APIKEY}}' \
    --data-raw '{
        "reference": "<samplereference>",
        "callbackUrl": "https://webhook.site/38a9e65e-3388-4399-89d4-3ceafa817111",
        "country": "US",
        "currency": "USD",
        "customerEmail": "roy@email.com",
        "destination": {
            "type": "ACH",
            "accountNumber": "460940000007191",
            "routingNumber": "1400045300",
            "accountType": "CHECKING",
            "bankName": "Brex",
            "bankAddress": "110 Gorgas Ave, Suite 400",
            "country": "US",
            "state": "CA",
            "city": "San Francisco",
            "postCode": "95000",
            "remittancePurpose": "SALARY_PAYMENT",
            "beneficiary": {
                "type": "BUSINESS",
                "accountName": "TechCity Technologies",
                "country": "US",
                "state": "DE",
                "city": "Lewes",
                "postCode": "19000",
                "address": "1400 Coastal"
            }
        },
        "sender": {
            "type": "BUSINESS",
            "accountName": "Sender Business Name",
            "country": "US",
            "state": "CA",
            "city": "San Francisco",
            "address": "123 Business St",
            "postCode": "94101",
            "businessRegistrationNumber": "123456789"
        }
    }'
 

The parameters for adding beneficiary for US bank accounts are:

ParameterDescriptionRequired
typeSpecify payment type. We only support ACH at the moment.
accountNumberAccount number of the beneficiary
routingNumberThe routing number of the receiving financial institution
account typeCan be a savings or checking account
bankNameThe name of the receiving bank
bankAddressAddress of the receiving bank.
stateState of the receiving bank
cityCity of the receiving bank
postCodePost code of the receiving bank
remittancePurposePurpose of the remittance, selected from predefined options.
See accepted remittance purposes here (opens in a new tab)
senderSender information. Expanded based on sender[type].
beneficiaryBeneficiary information. Expanded based on beneficiary[type].

Sender Parameters

ParameterDescriptionRequired
sender[type]Type of sender, either "BUSINESS" or "INDIVIDUAL".
sender[accountName]Name of the sender's account.
sender[country, state, city, address, postCode]Sender's address details: country, state, city, address, and postcode.
sender[businessRegistrationNumber]Business registration number.
Required if sender is BUSINESS
sender[dateOfBirth, countryOfBirth]Sender's date and country of birth.
Required if sender is INDIVIDUAL
sender[idType, idNumber, idCountry]Sender's identification details (type, number, and country).
Required if sender is INDIVIDUAL

Beneficiary Parameters

ParameterDescriptionRequired
beneficiary[type]Type of beneficiary, either "BUSINESS" or "INDIVIDUAL".
beneficiary[accountName]Name of the beneficiary's account.
beneficiary[country, state, city, address, postCode]Beneficiary's address details: country, state, city, address, and postcode.