Updates the name and member visibility setting of the specified infoRouter user group.
/srv.asmx/UpdateUserGroupName1
/srv.asmx/UpdateUserGroupName1?authenticationTicket=...&DomainName=...&GroupName=...&NewGroupName=...&showMembers=.../srv.asmx/UpdateUserGroupName1 (form data)http://tempuri.org/UpdateUserGroupName1| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
DomainName |
string | No | The domain/library name if the group is a local group. Pass empty or null for global groups. |
GroupName |
string | Yes | The current name of the user group to update. |
NewGroupName |
string | Yes | The new name for the user group. Pass the same value as GroupName to keep the current name. |
showMembers |
bool | Yes | If true, group membership is publicly visible to all users. If false, membership is private (hidden from non-members). |
<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 domain containing the group, or a system administrator for global groups.
GET /srv.asmx/UpdateUserGroupName1
?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=FinanceAdmins
&NewGroupName=FinanceManagers
&showMembers=true
HTTP/1.1
GET /srv.asmx/UpdateUserGroupName1
?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=FinanceAdmins
&NewGroupName=FinanceAdmins
&showMembers=false
HTTP/1.1
POST /srv.asmx/UpdateUserGroupName1 HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&DomainName=Finance
&GroupName=FinanceAdmins
&NewGroupName=FinanceManagers
&showMembers=true
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:UpdateUserGroupName1>
<tns:AuthenticationTicket>3f2504e0-4f89-11d3-9a0c-0305e82c3301</tns:AuthenticationTicket>
<tns:DomainName>Finance</tns:DomainName>
<tns:GroupName>FinanceAdmins</tns:GroupName>
<tns:NewGroupName>FinanceManagers</tns:NewGroupName>
<tns:ShowMembers>true</tns:ShowMembers>
</tns:UpdateUserGroupName1>
</soap:Body>
</soap:Envelope>
GroupName and NewGroupName.showMembers parameter corresponds to the public attribute in user group responses: true maps to public="True".UpdateUserGroupName.DomainName or null for global groups.public setting| Error | Description |
|---|---|
[900] Authentication failed |
Invalid or missing authentication ticket. |
[901] Session expired or Invalid ticket |
The ticket has expired or does not exist. |
| Group not found | The specified group does not exist. |
| Group name already exists | The NewGroupName conflicts with an existing group. |
| Access denied | The calling user lacks permission to manage this group. |
SystemError:... |
An unexpected server-side error occurred. |