Wait

logic_wait · logic · Logic & Flow · Available · v1.1.0

Description

Pause workflow execution. Resume via timer OR external webhook callback.

⚙️ Configuration parameters

Fields shown in the editor when configuring the node. Generated directly from the NodeDefconfigFields.

FieldTypeRequiredDefaultDescription
mode
Mode
enum
timerwebhookeither
yestimertimer = riprende dopo `durationMs` (default 60s). webhook = riprende quando arriva POST su `/api/v1/workflows/:wfId/wait-resume/:runId` (max attesa `maxWaitMs`). either = il primo dei due che scade vince (early-exit).
durationMs
Durata (ms) — per mode timer/either
numberno60000Tempo di attesa in millisecondi. 1000=1s, 60000=1min, 3600000=1h, 86400000=24h. Hard cap engine: 7 giorni (604800000ms). Per attese > 7 giorni usa `trigger_cron` invece.
maxWaitMs
Max attesa (ms) — per mode webhook/either
numberno3600000Timeout assoluto del webhook. Se nessuna callback arriva entro questo tempo il workflow riprende comunque (status=timeout). Default 1h. Protezione anti-leak: se l'utente non clicca mai il link conferma, il workflow non resta sospeso per sempre.

💡 Configuration example

JSON snippet of the node as it appears in the workflow. Values are derived fromdefaultValue and from required parameters.

{
  "id": "node-logic_wait-1",
  "defId": "logic_wait",
  "label": "Wait",
  "config": {
    "mode": "timer",
    "durationMs": 60000,
    "maxWaitMs": 3600000
  }
}

🔗 Related nodes in the same category

Ready to use Wait?

Available now on all FlowForge plans. Try it free without a credit card.

Start freeBrowse all nodes