The getWorkflowTokenForId operation finds the WorkflowToken object for a specific workflow token.

The getWorkflowTokenForId operation is declared as follows.

public WorkflowToken getWorkflowTokenForId(String workflowTokenId, String username, 
String password);

Individual threads or functions can run multiple workflows. The getWorkflowTokenForId operation allows a central process or thread to track the progress of each workflow. Using getWorkflowTokenForId provides access to all the information about a specific WorkflowToken because, although checking the token status only requires the ID, it is often useful to obtain all the information about a given token.

Type

Value

Description

String

workflowTokenId

ID of this run of the workflow

String

username

Orchestrator user name.

String

password

Orchestrator password.

Returns a WorkflowToken object for a specific workflow token that corresponds to the provided workflow token ID.