Remove Group

API Type

Web Services

Description

Removes a group from the AgilePoint system.

Syntax

public virtual void RemoveGroup(string groupName)

Parameters

Name Description

groupName

Definition:
Specifies the name of a group.
Type
string
Allowed Values:
A valid group name.

Output

None.

Example

IWFAdminService svc = GetAdminService();
string groupName = ...// for examples, "Users"

try
	{
    svc.RemoveGroup(groupName);
	}

catch (Exception ex)
	{
    Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
	}

Supported Versions

3.2.0.4 and higher