Method Signature
Example
Related Methods
Create Account
Link a new bank account
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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})`);
}