Unregister User

API Type

Web Services

Description

Removes a user's registration from the AgilePoint system. Note that this call does not remove the user from the local Windows system or the domain controller.

Syntax

void UnregisterUser(string userName)

Parameters

Name Description

userName

Definition:
The user name for the user.
Type
string
Allowed Values:
A valid user name for a registered AgilePoint user.

Output

None.

Example

IWFAdminService svc = GetAdminService();
string userName = ...// for example, "[Domain Name]\[User Account
Name]"

try
	{
svc.UnregisterUser(userName);
	}

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

Supported Versions

3.2.0.4 and higher