Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,15 @@ The table below compares the primary user-identifying attribute used by SCIM (i.
| Okta | SAML | SCIM.externalID and SAML.Use Name ID contain the same value. <br> Note: Configure Application username to Custom with user.getInternalProperty("id"). |
| EntraID | SAML | SCIM.externalID and SAML.Use Name ID contain the same value. <br> Note: Map Unique User Identifier as user.objectid in SSO Configuration. |

{{% alert color="info" %}}
To ensure the SCIM module functions correctly, configure your Identity Provider (IdP) to:

* map `externalId` to an immutable and unique identifier (for example, `oid` in Microsoft Entra ID).
* map `userName` to a unique user attribute.

Both `externalId` and `userName` are mandatory attributes and must be included in the SCIM request payload.
{{% /alert %}}

#### Advanced Attribute Mapping {#advanced-attribute-mapping}

Starting from version 4.1.0, the SCIM module provides enhanced support for handling both single-value and multi-value attributes, as well as SCIM extension schemas.
Expand Down
Loading