Adds an existing infoRouter global user group to the member list of the specified domain/library. All users in the group gain access to the domain according to its permissions configuration.
/srv.asmx/AddUserGroupAsDomainMember
/srv.asmx/AddUserGroupAsDomainMember?authenticationTicket=...&DomainName=...&GroupName=.../srv.asmx/AddUserGroupAsDomainMember (form data)http://tempuri.org/AddUserGroupAsDomainMember| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
DomainName |
string | Yes | Name of the domain/library to add the group to. |
GroupName |
string | Yes | Name of the global user group to add as a domain member. |
<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/AddUserGroupAsDomainMember
?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=AccountingTeam
HTTP/1.1
POST /srv.asmx/AddUserGroupAsDomainMember HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=AccountingTeam
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:AddUserGroupAsDomainMember>
<tns:AuthenticationTicket>3f2504e0-4f89-11d3-9a0c-0305e82c3301</tns:AuthenticationTicket>
<tns:DomainName>Finance</tns:DomainName>
<tns:GroupName>AccountingTeam</tns:GroupName>
</tns:AddUserGroupAsDomainMember>
</soap:Body>
</soap:Envelope>
GetDomainMembers to view current user and group members.RemoveUserFromDomainMembership to remove an individual user, or use user group management APIs to remove a group.| 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 DomainName does not exist. |
| Group not found | The specified GroupName does not exist as a global user group. |
| Already a member | The group is already a member of the domain. |
SystemError:... |
An unexpected server-side error occurred. |