Removes the specified user group from the specified domain/library member list.
/srv.asmx/RemoveUserGroupFromDomainMembership
/srv.asmx/RemoveUserGroupFromDomainMembership?authenticationTicket=...&DomainName=...&GroupName=.../srv.asmx/RemoveUserGroupFromDomainMembership (form data)http://tempuri.org/RemoveUserGroupFromDomainMembership| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
DomainName |
string | Yes | The name of the domain/library to remove the group from. |
GroupName |
string | Yes | The name of the user group to remove from the domain. |
<response success="true" error="" />
<response success="false" error="[ErrorCode] Error message" />
Domain manager or system administrator. The calling user must be a manager of the target domain or a system administrator.
GET /srv.asmx/RemoveUserGroupFromDomainMembership
?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=AllStaff
HTTP/1.1
POST /srv.asmx/RemoveUserGroupFromDomainMembership HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=AllStaff
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:RemoveUserGroupFromDomainMembership>
<tns:AuthenticationTicket>3f2504e0-4f89-11d3-9a0c-0305e82c3301</tns:AuthenticationTicket>
<tns:DomainName>Finance</tns:DomainName>
<tns:GroupName>AllStaff</tns:GroupName>
</tns:RemoveUserGroupFromDomainMembership>
</soap:Body>
</soap:Envelope>
AddUserGroupAsDomainMember.| Error | Description |
|---|---|
[900] Authentication failed |
Invalid or missing authentication ticket. |
[901] Session expired or Invalid ticket |
The ticket has expired or does not exist. |
[115] Domain not found |
The specified domain/library does not exist. |
| Group not found | The specified group does not exist. |
| Group not a member | The group is not a member of this domain. |
| Access denied | The calling user is not a manager of this domain. |
SystemError:... |
An unexpected server-side error occurred. |