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

// 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