A widget for displaying and managing connected accounts with Pipes.

The <Pipes /> widget allows users to manage their connections to third-party
providers. Users can view the available providers, connect their
accounts, reauthorize when needed, and disconnect
their accounts.
Depending on how a provider is configured, the OAuth credentials behind a connection are managed by WorkOS, provided by the developer, or supplied by the organization itself. Providers that use organization-provided credentials only become available to connect once an administrator has entered the organization’s OAuth credentials.
Organization administrators provide those credentials – along with enabling providers and adjusting scopes – in the Pipes Admin widget.
Read more in the Pipes guide.
import { Pipes, WorkOsWidgets } from '@workos-inc/widgets'; /** * @param {string} authToken - A widget token that was fetched in your backend. See the * "Tokens" section of this guide for details on how to generate the token */ export function PipesPage({ authToken }) { return ( <WorkOsWidgets> <Pipes authToken={authToken} /> </WorkOsWidgets> ); }