Group Attributes

The lists on this page contain the supported group attributes.

Role name

This is an Account ID which must not be changed.


This is the companion discussion topic for the documentation at https://documentation.sailpoint.com/connectors/sap/direct/help/integrating_sap_direct_source/group_attributes.html

Hi, should the API body snippets on this page be in JSON format to support the ISC API’s?

Also the OOTB object for Roles is actually group. So this snippet:

<AttributeDefinition entitlement="true" multi="true" name="Roles" schemaObjectType="role" type="string">
        <Description>Roles associated with the Position, Job, or Organization unit</Description>
      </AttributeDefinition>

In JSON format for ISC should look like this maybe:

        {
            "name": "Roles",
            "type": "STRING",
            "schema": {
                "type": "CONNECTOR_SCHEMA",
                "id": "<id of the group schema object on the source>",
                "name": "group"
            },
            "description": "Roles associated with the Position, Job, or Organization unit",
            "isMulti": true,
            "isEntitlement": true,
            "isGroup": true
        }

As per https://developer.sailpoint.com/docs/api/v3/update-source-schema

Hi Haydn! Thank you for your input. We’ve created a Jira issue to track the effort and we’ll update the comment thread when it’s been addressed: CONDOCS-3919