B2B Saas Authentication

/

Frontend SDKs

/

Pre-built UI

/

Admin Portal

/

Org Settings

AdminPortalOrgSettings

The AdminPortalOrgSettings component allows organization members with the required RBAC roles to manage their organization settings.

AdminPortalOrgSettings must be wrapped inside a StytchB2BProvider. Take a look at our installation guide for more information on how to configure the StytchB2BProvider for your framework.

Admin Portal Organization Settings UI


Fields


stylesobject

configobject
import { AdminPortalB2BProducts } from '@stytch/vanilla-js/b2b/adminPortal';
import { AdminPortalOrgSettings } from '@stytch/react/b2b/adminPortal';
import React from 'react';

const styles = { fontFamily: 'Arial' };

const config = {
  allowedAuthMethods: [AdminPortalB2BProducts.emailMagicLinks, AdminPortalB2BProducts.password],
};

const MyComponent = () => {
  return <AdminPortalOrgSettings styles={styles} config={config} />;
};

export default MyComponent;