StyloDocs
Workflow blocks

Delay

Pause the workflow for up to 30 seconds before continuing the next step.

View as Markdown

system/delay — Pause the workflow for up to 30 seconds before continuing the next step.

Where it appears

The Delay block lives in the Logic & control group of the Workflow Builder.

Fields

FieldTypeRequiredDefaultDescription
delayMstext (supports references)Yes5000Delay in milliseconds. Maximum 30000 (30 seconds). Accepts a number or a <NodeName.field> reference.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Delay.field>.

NameTypeDescription
successbooleanWhether the delay completed
delayMsnumberEffective delay in milliseconds (clamped to 0–30000)

Example

A minimal configuration for this block:

{
  "type": "system/delay",
  "config": {
    "delayMs": "5000"
  }
}

Limits and failure modes

  • Required field (delayMs) must be set, or the block fails validation before it runs.

On this page