Methods / Group, Role, and Rights |
Name | Type | Description |
---|---|---|
groupName | string | A string that contains the name of the group. |
description | string | A string that contains the description of an entity. |
responsibleUser | string | A string that contains the name of the responsible user of this group. The responsible user must be a registered AgilePoint user. |
enabled | bool | A Boolean value: True enables the entity; False disables the entity. |
IWFAdminService svc = GetAdminService(); string groupName = ...// for example, "TestGroup1" string description = ... // for example, "This is new description of the user group" string groupLeadUserName = ...// for example, "DEMO3\\Administrator" try { WFGroup updatedGroup = Svc.UpdateGroup(groupName, description, groupLeadUserName, true); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }