Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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})`); }