Search for Bank accounts

You can find a single BankAccount by using its UID.

BankAccount account = gateway.bankAccount().find("account_uid", "customer_uid");

BankAccount object is returned on success.

Find all Bank accounts for a customer

BankAccountCollection collection = gateway.bankAccount().search("customer_uid");

BankAccountCollection object is returned on success.