deleteWorkflow

Back to index

Summary

Deletes a workflow, including all states and transitions.
projectName
Stringrequired
The name for the project that must be unique among all projects.
workflowName
Stringrequired
The name of the workflow.
deleteProcesses
Booleanoptional
True to delete processes associated with the workflow.

Usage

Perl

$cmdr->deleteWorkflow( "test-projectName", # projectName "test-workflowName" # workflowName # optionals );

ectool

ectool deleteWorkflow \ "test-projectName" `# projectName` \ "test-workflowName" `# workflowName` \ # optionals

Examples

Perl

$cmdr->deleteWorkflow("Default", "workflow_26_201010121647", {deleteProcesses => true});

ectool

ectool deleteWorkflow "Default" "workflow_26_201010121647" --deleteProcesses true