
Components
Accounts
Embed the accounts component to let users browse bank accounts and view transactions, statements, and account details.

Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Embed the accounts component to let users browse bank accounts and view transactions, statements, and account details.

import { EmbeddedProvider, BankAccountsWidget } from '@tesouro/embedded-components-react';
export default function AccountsPage() {
return (
<EmbeddedProvider
userId={currentUser.id}
userEmail={currentUser.email}
widgetTokenRefreshUrl="/api/widget-token"
>
<BankAccountsWidget />
</EmbeddedProvider>
);
}
<embedded-bank-accounts-widget
data-user-id="YOUR_USER_ID"
data-widget-token-refresh-url="/api/widget-token"
></embedded-bank-accounts-widget>
Was this page helpful?