retryProcessStep

On this page
Back to index

Summary

Allows a job step that is waiting on manual input to perform a retry.
request
Stringrequired
This parameter and the value displayed are required; request=retryProcessStep must appear in your query string.
jobStepId
Stringrequired
The primary key for a job step.
action
Stringoptional
Action to execute: rerun (default), skip or fail the process step.
Possible values: "fail", "rerun", "skip"
comment
Stringoptional
Comment provided while retry an action on the manual process step.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.retryProcessStep( request: "test-request", jobStepId: "test-jobStepId" /* optional arguments */ )