Methods / Organization Properties |
Web Services
Updates organization properties in the AgilePoint the system.
void UpdateOrganizationProperties(string Name, KeyValue[] list)
Name | Description |
---|---|
Name |
|
list |
|
None.
IWFAdminService svc = GetAdminService(); string Name = ...// for example, "Titles" List<KeyValue> list = new List<KeyValue>(); list.Add( new KeyValue( "MANAGER", "Manager" ) ); list.Add( new KeyValue( "REG_SALES_DIRECTOR", "Regional Sales Director" ) ); list.Add( new KeyValue( "GENERAL_MANAGER", "General Manager" ) ); KeyValue[] properties = list.ToArray(); try { adm.UpdateOrganizationProperties("Titles",properties ); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher