Using Hosted Active Directory::ModifyUser to set **publicDelegates **property can do this.  
Sample:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<request xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><procedure xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<execute namespace="Hosted Active Directory" procedure=
"ModifyUser" impersonate="1">
<executeData>
<path>LDAP://CN=jack@litware.com,OU=litware.com,OU=OrgA,OU=Hosting,DC=fabrikam,DC=com</path>
<properties>
<property name="publicDelegates">
<value>mike@litware.com,OU=litware.com,OU=OrgA,OU=Hosting,DC=fabrikam,DC=com</value>
</property>
</properties>
<preferredDomainController>ad01.fabrikam.com</preferredDomainController>
</executeData>
</execute>
</procedure>
</request>