Modifying a group by using XML

Use the ModifyGroup procedure of the Managed Active Directory namespace to modify a group in Active Directory.

This procedure expects to be called with impersonate="1". The procedure impersonates the caller.

Example of a request that calls the ModifyGroup procedure

<request>
  <procedure>
	<execute namespace="Managed Active Directory" procedure="ModifyGroup">
	<executeData>
		<group>LDAP:// CN=myGroup1,DC=contoso,DC=com</group>
		<groupType>UNIVERSAL SECURITY</groupType>
		<description>Describes the modified group</description>
		<properties>
		</properties>
		<preferredDomainController>myPrimaryDC.contoso.com</preferredDomainController>
	</executeData>
	</execute>
  </procedure>
</request>

Input for ModifyGroup

The following input is valid for this request:

Typical response for ModifyGroup

The response to this procedure does not contain significant data.

Important