Skip to main content

Pause

Command description

Pause workflow execution for a specified duration, then continue with the next command.

Use either a fixed duration or a range. With a range, each execution selects a random duration between the configured minimum and maximum.

Command Input Parameters

input parametersInput parameter typeDescription
Pause Durationnumber or strFixed pause duration, in seconds
Enable Pause Time RangeboolWhether to enable random pause time range, default False
Minimum Pause Durationnumber or strMinimum pause duration, in seconds; required only when a pause range is enabled
Maximum Pause Durationnumber or strMaximum pause duration, in seconds; required only when a pause range is enabled

Command Output Parameters

None

Fixed pause example

{
"children": [],
"in": {
"Pause Duration": "3"
},
"out": {},
"comments": "Fixed pause of 3 seconds",
"ins": "Pause"
}

Range Pause Example

{
"children": [],
"in": {
"Enable Pause Time Range": "True",
"Minimum Pause Duration": "2",
"Maximum Pause Duration": "5"
},
"out": {},
"comments": "Randomly pause 2 to 5 seconds",
"ins": "Pause"
}