Get Released Process Definition ID

API Type

Web Services

Description

Retrieves the released process definition ID by a specified process definition name.

Syntax

public virtual string GetReleasedPID(string procDefName)

Parameters

Name Description

procDefName

Definition:
The name of the process definition.
Type
string
Allowed Values:
A single line of text.

Output

The ID for the released process definition.

Example

//GetReleasedPID
IWFWorkflowService svc= GetWorkflowService();
string procDefName = "Budget Request Approval Process";
string processDefinitionID = 
svc.GetReleasedPID(procDefName);
Console.WriteLine("Process definition ID=" + processDefinitionID);

Supported Versions

3.2.0.4 and higher