Description
Pause workflow execution. Resume via timer OR external webhook callback.
logic_wait · logic · Logic & Flow · Available · v1.1.0
Pause workflow execution. Resume via timer OR external webhook callback.
Fields shown in the editor when configuring the node. Generated directly from the NodeDefconfigFields.
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
modeMode | enumtimerwebhookeither | yes | timer | timer = 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). |
durationMsDurata (ms) — per mode timer/either | number | no | 60000 | Tempo 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. |
maxWaitMsMax attesa (ms) — per mode webhook/either | number | no | 3600000 | Timeout 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. |
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
}
}Available now on all FlowForge plans. Try it free without a credit card.
Start freeBrowse all nodes