Add ACH Account
Endpoint: BASE_URL/bass/customer-ach-accounts
These are the parameters that must be sent to create an account:
name: name of the account.
type: account type (checking, savings, moneyMarket).
achAccountNo: account number.
achRoutingNo: routing number.
firstName: name of the account holder.
lastName: lastname of the account holder.
{
"name": "AccountName",
"type": "C",
"achAccountNo": "011401532",
"achRoutingNo":"011401533",
"firstName": "John",
"lastName": "Smith"
}
ACH accounts must be associated with a Galileo account. By default, they are associated with the primary account.
If the account was created successfully, you will receive a 200 code in the response.
Linker example response:
{
"statusCode": 200
}
Last updated
Was this helpful?