Direct Permissions

The Salesforce source supports the ability to read direct permissions for Group Profiles. In new sources, the includePermissions attribute is set to true by default in a given Group Profile schema. This attribute enables the connector to fetch the direct permissions associated to the Group Profile.

For the pre-existing sources, perform the following steps to update the includePermissions attribute value for the group profile schema.

  • Use listSources API to get source ID for your source.

  • Use listSchemas API to get schema ID for the group profile schema for which you want to include direct permissions.

  • Use updateSchema API and enter the following content in body.

    Copy
    {
    "op": "replace",
    "path": "/includePermissions",
    "value": true
    }

After these steps, run entitlement aggregation to fetch the direct permissions associated to the Group Profile.