Skip to main content

Method Signature

align.externalAccounts.list(
  customerId: string
): Promise<ExternalAccountListResponse>

Example

const response = await align.externalAccounts.list(customerId);

for (const account of response.items) {
  console.log(`${account.id}: ${account.bank_name} (${account.account_type})`);
}