Methods / Methods for Manual Work Items (Tasks) |
Web Services
Unassigns a work item that was previously assigned to a user. This method applies to work items that can be assigned to members of task groups, where a work item can be assigned to or claimed by any of a group of users. The extended method includes client data.
public virtual WFEvent UndoAssignWorkItemEx(string workItemID, string clientData)
Name | Description |
---|---|
workItemID |
|
clientData |
|
WFEvent object that provides the status of the transaction. The possible statuses are:
string url = "http://[hostname]:[port]/AgilePointServer"; string workItemID = …// for example, "03ABD59A0EB74D7A8741709478E83877"; string clientData = …/// try { WFEvent evt = svc.UndoAssignWorkItemEx(workItemID, clientData); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher