Reassign Update Work Item

API Type

Web Services

Description

Reassigns a manual work item to another participant.

Syntax

public virtual WFEvent ReassignUpdateWorkItem(string workItemID, string originalUserID, string newAssigneedUserID, string clientData)

Parameters

Name Description

WorkItemID

Definition:
An ID that represents a work item (task).
Type
string
Allowed Values:
A valid, unique 32-byte work item (task) ID.

originalUserID

Definition:
The user ID for the original user assigned the work item.
Type
string
Allowed Values:
A valid user ID.

newAssigneedUserID

Definition:
The user name for a user to whom you want to assign a work item.
Type
string
Allowed Values:
A valid user name.

clientData

Definition:
Specifies the client data, which identifies a client for AgilePoint Server.
Type
string
Allowed Values:
A string that contains the client data.

If this value is null, the system will keep existing client data. Otherwise the relevant data is overwritten.

Output

WFEvent object that provides the status of the transaction. The possible statuses are:

  • Sent - Indicates event has been sent to engine for processing.
  • Failed - Indicates event failed to process.
  • Processed - Indicates event has been processed successfully.
  • Canceled - Indicates event was canceled.
  • Deferred - Indicates event does not need to be sent immediately.

Example

IWFWorkflowService svc = GetWorkflowService();
string WorkItemID = …// "0006EE0244ED431CB93F6253060DD21F"; // Work item ID
string originalUserID = …// @"[DOMAIN NAME]\[user name]"; // new user ID
string newAssigneedUserID = …// @"[DOMAIN NAME]\[user name]"; // new user ID

try
	{
    WFEvent evt = ReassignUpdateWorkItem(WorkItemID, originalUserID, newAssigneedUserID, null);
	}

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

Supported Versions

4.6 and higher