Deleting a public folder by using XML

Use the DeleteFolder procedure of the Managed Exchange namespace to delete a public folder for an Exchange 2000 Server organization.

This procedure performs explicit internal permissions testing. Only members of admins@organization and domain administrators can call this procedure.

Example of a request that calls the DeleteFolder procedure

<request>
  <procedure>
	<execute namespace="Managed Exchange" procedure="DeleteFolder">
	<executeData>
			<owningOrg>LDAP://ou=Reseller,ou=Hosting,dc=contoso,dc=com</owningOrg>
		<folderPath>contosoOrg</folderPath>
		<name>Folder1</name>
	</executeData>
	</execute>
  </procedure>
</request>

Input for DeleteFolder

The following input is valid for this request:

Typical response for DeleteFolder

The response to this procedure does not contain significant data.

Important