Methods / Group, Role, and Rights |
Web Services
Adds a group to the AgilePoint system.
public virtual WFGroup AddGroup(string GroupName, string Description, string ResponsibleUser, bool Enabled)
Name | Description |
---|---|
GroupName |
|
Description |
|
ResponsibleUser |
|
Enabled |
|
WFGroup object represented the group that is added.
IWFAdminService svc = GetAdminService(); string GroupName = ...; string Description = ...; string ResponsibleUser = @"[Domain Name]\[Account Name]", // Group Lead User Name bool Enabled = true; try { WFGroup group = svc.AddGroup(GroupName, Description, ResponsibleUser, Enabled); } catch( Exception ex ) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher