Retrieve all linked bank accounts for a customer
align.externalAccounts.list( customerId: string ): Promise<ExternalAccountListResponse>
const response = await align.externalAccounts.list(customerId); for (const account of response.items) { console.log(`${account.id}: ${account.bank_name} (${account.account_type})`); }