Modifying a contact by using XML

Use the ModifyContact procedure of the Managed Active Directory namespace to modify a contact in Active Directory.

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

Example of a request that calls the ModifyContact procedure

<request>
  <procedure>
	<execute namespace="Managed Active Directory" procedure="ModifyContact">
	<executeData>
		<contact>LDAP://CN=Suzan Fine,OU=Hosting,DC=contoso,DC=com</contact>
		<properties>
		<property name="description">Senior Flight Instructor</property>
		</properties>
	</executeDataa>
	</execute>
  </procedure>
</request>

Input for ModifyContact

The following input is valid for this request:

Typical response for ModifyContact

The response to this procedure does not contain significant data.

Important