AdminPortalSCIM

The AdminPortalSCIM component allows organization members with the required RBAC roles to manage SCIM for their organization.

AdminPortalSCIM 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 SCIM UI


Fields


stylesobject

The style configuration allows you to customize the look of the Admin Portal. You can specify some of them or none at all. We'll use our defaults for the ones you don't specify.

containerobject

The configuration object for the Admin Portal container.

backgroundColorstring

The background color of the Admin Portal container.

borderColorstring

The border color of the Admin Portal container.

borderRadiusstring

The border radius of the Admin Portal container.

widthstring

The width of the Admin Portal container.

colorsobject

The configuration object for colors used in the Admin Portal.

primarystring

Your primary brand color. This will be applied to most of the text in the Admin Portal.

secondarystring

Your secondary brand color. This will be applied to text disclaimers and other visual elements.

successstring

A success color to be used in visual elements.

errorstring

An error color to be used in visual elements.

accentTextstring

The text color for accent elements. This will be used for tags and select chips in the Admin Portal.

accentstring

An accent color to be used in visual elements. This will be applied to the background of tags and select chips in the Admin Portal.

subtlestring

The color used for miscellaneous elements that don't require visual elements, like dividers and table, popover menu, and accordion borders.

buttonsobject

The configuration object for buttons in the Admin Portal.

primaryobject

The configuration object for primary buttons

backgroundColorstring

The background color of the primary button.

textColorstring

The text color of the primary button.

borderColorstring

The border color of the primary button.

borderRadiusstring

The border radius of the primary button.

secondaryobject

The configuration object for secondary buttons

backgroundColorstring

The background color of the secondary button.

textColorstring

The text color of the secondary button.

borderColorstring

The border color of the secondary button.

borderRadiusstring

The border radius of the secondary button.

disabledobject

The configuration object for disabled buttons

backgroundColorstring

The background color of the disabled button.

textColorstring

The text color of the disabled button.

borderColorstring

The border color of the disabled button.

borderRadiusstring

The border radius of the disabled button.

inputsobject

The configuration object for text inputs in the Admin Portal.

backgroundColorstring

The background color of the text inputs.

textColorstring

The text color of the text inputs.

placeholderColorstring

The color of the placeholder text in the text inputs.

borderColorstring

The border color of the text inputs.

borderRadiusstring

The border radius of the text inputs.

fontFamilystring

The font family that will apply to text in the Admin Portal.

borderRadiusstring

The default border radius for elements in the Admin Portal.

import { AdminPortalSCIM } from '@stytch/react/b2b/adminPortal';
import React from 'react';

const styles = { fontFamily: 'Arial' };

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

export default MyComponent;