Get Base Process Definition ID

API Type

Web Services

Description

Retrieves the ID for the first version of the process definition, called the base process definition. All subsequent process definition versions have the same base process definition ID. This call retrieves the base process definition ID with the specified process definition name.

Syntax

public virtual string GetBaseProcDefID(string procDefName)

Parameters

Name Description

procDefName

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

Output

string that contains the base process definition ID.

Example

IWFWorkflowService svc = GetWorkflowService();
string procDefName = "CreateRequest";
string baseProcessDefinitionID=
svc.GetBaseProcDefID(procDefName);

Supported Versions

3.2.0.4 and higher