React
Web components
Next steps
- Set up the
EmbeddedProviderwith authentication and theming - Explore Accounts payable in the FinOps guides for payables and approval workflows
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Embed the bill pay component to let users manage and pay bills directly within your application.
import { EmbeddedProvider, BillPayWidget } from '@tesouro/embedded-components-react';
export default function BillPayPage() {
return (
<EmbeddedProvider
userId={currentUser.id}
userEmail={currentUser.email}
widgetTokenRefreshUrl="/api/widget-token"
>
<BillPayWidget />
</EmbeddedProvider>
);
}
<embedded-bill-pay-widget
data-user-id="YOUR_USER_ID"
data-widget-token-refresh-url="/api/widget-token"
></embedded-bill-pay-widget>
EmbeddedProvider with authentication and themingWas this page helpful?