Your customers' end-users sign in through their own OIDC or SAML identity provider - Okta, Microsoft Entra ID, Google Workspace - routed automatically by verified email domain. Not the shared social buttons: one connection per business customer.
Federate any OpenID Connect or SAML 2.0 provider - Okta, Microsoft Entra ID, Google Workspace, or a customer's own directory.
Bind each connection to a customer email domain, proven with a DNS record, so users on that domain reach the right IdP automatically.
Signed assertions, replay protection, and rejected deprecated algorithms are switched on from the start - no tuning to get right.
import { useSignIn } from '@authowl/react' export function ContinueWithSso({ email }) { const { signInSso } = useSignIn() async function start() { // the email's domain resolves the connection const result = await signInSso({ email, callbackURL: '/dashboard' }) if (result.data?.url) window.location.href = result.data.url } return <button onClick={start}>Continue with SSO</button> }
The Enterprise SSO add-on is EGP 3,000/mo per project, available on the Pro or Scale plan - never bundled into a tier. Development environments are never gated.
Federate their identity provider by email domain and let one connection sign their whole team in.