Documentation Index
Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
Use this file to discover all available pages before exploring further.
The transfers component lets users move money between their embedded accounts and any external accounts they have connected via the linked accounts component. Transfers to and from external accounts use the bank’s ACH system and typically settle within 1–3 business days.
React
import { EmbeddedProvider, TransfersWidget } from '@tesouro/embedded-components-react';
export default function TransfersPage() {
return (
<EmbeddedProvider
userId={currentUser.id}
userEmail={currentUser.email}
widgetTokenRefreshUrl="/api/widget-token"
>
<TransfersWidget />
</EmbeddedProvider>
);
}
Web components
<embedded-transfers-widget
data-user-id="YOUR_USER_ID"
data-widget-token-refresh-url="/api/widget-token"
></embedded-transfers-widget>