Reassign Work Item (Extended Method)

API Type

Web Services

Description

Reassigns a work item to another participant, and update the user name. The extended method includes client data.

Syntax

public virtual WFEvent ReassignWorkItemEx(string WorkItemID, string UserName, 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.

UserName

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

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

string ClientData= "<?xml version="1.0" … …";
string WorkItemID = ...// for example, "0006EE0244ED431CB93F6253060DD21F"; // Work item ID
string UserName = …// for example @"[DOMAIN NAME]\[USER NAME]"; // new user ID

try
	{
    WFEvent evt = _svc.ReassignWorkItemEx(WorkItemID,
    UserName, ClientData);
	}

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

Supported Versions

3.2.0.4 and higher