Add external account

External Accounts represent your user's financial accounts (bank accounts, debit cards, etc.) that can be used to either deposit or withdraw funds, while handling validation, KYC/KYB, and fiat conversion with External Accounts, developers can focus on building while users enjoy simplified access to depositing and withdrawing funds.

POST https://dev-api.altra.click/payment/external-account/:customer_id

Request Body

Name
Type
Description

bank_name*

Required

Bank name of the account (e.g. "Isaac")

type*

Required

account_name*

account_number*

String

account number of your bank account

routing_number*

String

routing number of your bank account

account_owner_name*

String

Owner of the account Bank Account (e.g. "John Doe")

address

String

address of the beneficiary of this account

// add external account
{
    "type": "'wire' | 'raw'",
    "bank_name": "string",
    "account_number": "string",
    "routing_number": "string",
    "account_name": "string",
    "account_owner_name": "string",
    "address": {
        "street_line_1": "string",
        "street_line_2": "string",
        "city": "string",
        "state": "string",
        "postal_code": "string",
        "country": "string"
    }
}

Last updated