Remove Organization Properties

API Type

Web Services

Description

Removes an organization property from AgilePoint.

Syntax

public virtual void RemoveOrganizationProperties(string Name)

Parameters

Name Description

Name

Definition:
The name of an item, such as a property or attribute in a name/value pair.
Type
string
Allowed Values:
A valid name.

Output

None.

Example

IWFAdminService svc = GetAdminService();
string Name = ...// for example, "Departments"

try
	{
    svc. RemoveOrganizationProperties (Name);
	}

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

Supported Versions

3.2.0.4 and higher