Getting group capacity expansion information by using XML

Use the GetWin2KCapacityExpansion procedure of the Managed Active Directory namespace to return the current group capacity expansion multiplier for a given organization and capacity type.

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

Example of a request that calls the GetWin2KCapacityExpansion procedure

<request>
  <procedure>
	<execute namespace="Managed Active Directory" 
		procedure="GetWin2KCapacityExpansion" impersonate="1">
	<executeData>
		<organization>LDAP://ou=Hosting,dc=contoso01,dc=com</organization>
		<capacityType>UserN</capacityType>
	</executeData>
	<after source="executeData" sourcePath="multiplier"
		destination="data"  />
	</execute> 
  </procedure>
</request>

Input for GetWin2KCapacityExpansion

The following input is valid for this request:

Typical response for GetWin2KCapacityExpansion

This procedure returns the capacity expansion multiplier.

<response>
  <data>
	<multiplier>2</multiplier>
  </data>
</response>

Important