Administrative Units Attributes

To manage administrative units, ensure that the following attribute is present in the account schema:

Name

Type

Details

administrativeUnits

String

Multivalued

Entitlement

List of Administrative Units to which the user belongs to.

Object Type - administrativeUnit

To manage the Microsoft Entra ID administrative units objects, ensure that the following attributes are present in the entitlement schema:

Schema Attribute Name

Type

Description

id

String

Fully qualified ID for the Administrative Unit.

displayName

String

Friendly name of the Administrative Unit.

description

String

This is the description of the Administrative Unit.

isMemberManagementRestricted

String

This is the description of Administrative Unit.

membershipRule

String

Membership Rule.

membershipType

String

MembershipType.

membershipRuleProcessingState

String

Membership Rule Processing State.

visibility

String

Visibility.

Use the following JSON request and the Identity Security Cloud REST API to add the administrativeUnit schema to an existing connector:

Note
For more information on SailPoint's REST APIs, refer to Best Practices: REST API Authentication and REST API - Update Source (Partial) in the SailPoint Developer Community.

Copy
{
      "type": "administrativeUnit",
      "nativeObjectType": "administrativeUnit",
      "identityAttribute": "id",
      "displayAttribute": "displayName",
      "attributes": [
        {
          "name": "id",
          "type": "STRING",
          "schema": null,
          "description": "Fully qualified ID for the Administrative Unit",
          "isMulti": false,
          "isEntitlement": false,
          "isGroup": false
        },
        {
          "name": "displayName",
          "type": "STRING",
          "schema": null,
          "description": "Friendly name of the Administrative Unit",
          "isMulti": false,
          "isEntitlement": false,
          "isGroup": false
        },
        {
          "name": "description",
          "type": "STRING",
          "schema": null,
          "description": "Description of Administrative Unit",
          "isMulti": false,
          "isEntitlement": false,
          "isGroup": false
        },
        {
          "name": "isMemberManagementRestricted",
          "type": "boolean",
          "description": "Description of Administrative Unit"
        },
        {
          "name" : "membershipRule",
          "type" : "STRING",
          "description": "Membership Rule"
        },
        {
          "name" : "membershipType",
          "type" : "STRING",
          "description": "Membership Type"
        },
        {
          "name" : "membershipRuleProcessingState",
          "type" : "STRING",
          "description": "Membership Rule Processing State"
        },
        {
          "name" :"visibility",
          "type" : "STRING",
          "description" : "Visibility"
        }

]

}