Read nested group in SCIM connector

I need to read groups and subgroups from Infor Cloud Suite, for which I am using the SCIM 2.0 connector. However, while performing entitlement aggregation, I can only see the main group getting aggregated, not the members’ groups.

Is it possible to read members’ groups via the SCIM 2.0 connector in Identity Security Cloud?

Sample Group API result:

{
    "schemas": [
        "urn:ietf:params:scim:api:messages:2.0:ListResponse"
    ],
    "totalResults": 7,
    "startIndex": 1,
    "Resources": [
        {
            "schemas": [
                "urn:ietf:params:scim:schemas:core:2.0:Group"
            ],
            "id": "B986B333F75D",
            "displayName": "Security Role",
            "members": [
                {
                    "value": "E09757C9B745",
                    "display": "UserAdmin",
                    "type": "Group"
                },
                {
                    "value": "5D2393D42AC7",
                    "display": "DataAdministrator",
                    "type": "Group"
                },
                {
                    "value": "12D4D4C054E6",
                    "display": "Infor-SystemAdministrator",
                    "type": "Group"
                }
            ],
            "meta": {
                "resourceType": "Group",
                "created": "2024-09-30T10:32:13.5404829Z",
                "location": "B986B333F75D"
            }
        },
        {
            "schemas": [
                "urn:ietf:params:scim:schemas:core:2.0:Group"
            ],
            "id": "1205983A2A4D",
            "displayName": "Accounting Entity",
            "members": [],
            "meta": {
                "resourceType": "Group",
                "created": "2024-09-30T10:32:13.5405172Z",
                "location": "1205983A2A4D"
            }
        }
    ]
}

Here, I want to read all members from each group.

Thanks,

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.