Name Change Trigger

Hi @aishwaryagoswami ,

You can update the first or last name changes directly via Attribute sync and other attributes (CN, displayName, and UPN) can be updated via Before Provisioning Rule or by update provisioning policy.

If you are going to use the update provisioning policy, for uniqueCounters you can use Create Unique LDAP Attribute rule for uniquecounter. I have gave you the example transform below.

{
    "name": "userPrincipalName",
    "transform": {
        "type": "rule",
        "attributes": {
            "name": "Create Unique LDAP Attribute"
        }
    },
    "attributes": {
        "template": "$(displayName)$(uniqueCounter)",
        "cloudMaxUniqueChecks": "50",
        "cloudMaxSize": "20",
        "cloudRequired": "true"
    },
    "isRequired": false,
    "type": "string",
    "isMultiValued": false
}

Thanks!!

2 Likes