From a354d6db6b08c97fd73f1a2412472d622fc7490d Mon Sep 17 00:00:00 2001 From: Karuna Vengurlekar Date: Mon, 6 Jul 2026 18:06:30 +0530 Subject: [PATCH 1/2] Updates to Attribute Mapping section --- .../platform-supported-content/modules/scim/_index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md b/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md index 486da9270f2..40f4f3e7bbd 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md @@ -239,6 +239,10 @@ 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.
Note: Configure Application username to Custom with user.getInternalProperty("id"). | | EntraID | SAML | SCIM.externalID and SAML.Use Name ID contain the same value.
Note: Map Unique User Identifier as user.objectid in SSO Configuration. | +{{% alert color="info" %}} +To ensure the SCIM module works as expected, configure your Identity Provider (IdP) to map `externalId` to an immutable attribute (for example, `oid`) and `userName` to a unique attribute. Then map these values to the corresponding fields in your application's **User** entity. +{{% /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. From d959a54c26ccafd2c3064e0fccc10a8346646de6 Mon Sep 17 00:00:00 2001 From: Karuna Vengurlekar Date: Tue, 7 Jul 2026 14:50:42 +0530 Subject: [PATCH 2/2] Add feedback from Phani --- .../platform-supported-content/modules/scim/_index.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md b/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md index 40f4f3e7bbd..a36fdb1f097 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/scim/_index.md @@ -240,7 +240,12 @@ The table below compares the primary user-identifying attribute used by SCIM (i. | EntraID | SAML | SCIM.externalID and SAML.Use Name ID contain the same value.
Note: Map Unique User Identifier as user.objectid in SSO Configuration. | {{% alert color="info" %}} -To ensure the SCIM module works as expected, configure your Identity Provider (IdP) to map `externalId` to an immutable attribute (for example, `oid`) and `userName` to a unique attribute. Then map these values to the corresponding fields in your application's **User** entity. +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}