completeManualTask

Back to index

Summary

Completes the manual task.
flowRuntimeId
UUIDrequired
The ID of the flow runtime.
stageName
Stringrequired
The name of the stage.
taskName
Stringrequired
The name of the task.
action
Stringoptional
The type of action to be taken on the manual process step or manual task or gate task.
Possible values: "completed", "failed", "skipped"
actualParameters
Mapoptional
Actual parameters passed to an invoked subprocedure.
evidence
Stringoptional
Evidence provided while taking an action on the manual process step or manual task or gate task.
gateType
Stringoptional
The type of the gate.
Possible values: "POST", "PRE"

Usage

Perl

$cmdr->completeManualTask( "test-flowRuntimeId", # flowRuntimeId "test-stageName", # stageName "test-taskName" # taskName # optionals );

ectool

ectool completeManualTask \ "test-flowRuntimeId" `# flowRuntimeId` \ "test-stageName" `# stageName` \ "test-taskName" `# taskName` \ # optionals

Examples

Perl

$cmdr->completeManualTask("4fa765dd-73f1-11e3-b67e-b0a420524153", "Final Deploy", "Confirm version"});

ectool

ectool completeManualTask 4fa765dd-73f1-11e3-b67e-b0a420524153 "Final Deploy" "Confirm version"