A widget for organization admins to manage their organization's Pipes connections — enabling providers, supplying OAuth credentials, and configuring scopes.

The <PipesAdmin /> widget lets organization administrators manage their
organization’s Pipes connections. From a single list, an admin can
enable or disable providers for their organization’s members, supply their
organization’s own OAuth credentials (client ID and secret) for providers
configured to use customer credentials, and adjust the scopes requested when
members connect.
This widget is gated by the widgets:pipes:manage permission. End users who
only need to connect and manage their own accounts should use the
Pipes widget instead.
Read more in the Pipes guide.
import { PipesAdmin, 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 PipesAdminPage({ authToken }) { return ( <WorkOsWidgets> <PipesAdmin authToken={authToken} /> </WorkOsWidgets> ); }