Hi @markbrook you can leverage the LDAP attribute newRDN, newSuperior and deleteOldRDN to do the modify process like OU change, CN change…
In LDAP newrdn, deleteoldrdn, and newsuperior are parameters used in the Modify DN operation, which is used to rename an entry in the directory tree.
newrdn
This parameter specifies the new Relative Distinguished Name (RDN) for the entry.
The RDN is the name of the entry relative to its parent entry in the directory tree.
The newrdn parameter specifies the new name that the entry will have after the modification.
deleteoldrdn
This parameter is a Boolean flag that indicates whether the old RDN (Relative Distinguished Name) should be deleted after the entry is renamed.
If set to true, the old RDN is deleted; if set to false, the old RDN is retained as an attribute of the entry.
newsuperior
This parameter specifies the new parent entry for the entry being renamed.
It is used when the entry is moved to a new location in the directory tree during the rename operation.
If the entry is not being moved to a new parent, this parameter is not used.