Loop node
The Loop node iterates over a set of elements or a sequence of actions multiple times. It is typically used to process collections or repeat operations based on a defined condition.
This node is available in: Authentication, Admin, Self Service, API, Consent, Library, Custom, User Defined
Node configurations
-
Array to Loop: Define the set of elements (array) that will be iterated. Can be taken from a variable or defined directly inside the textbox.
-
Save in the flow store: Save the result into a variable for reuse by other nodes. See Save in the flow store for details.
Default output node
- Done — Iteration completed successfully (all elements processed)
- Invalid Array — The provided input is not a valid array
- Has Next — There is at least one more element to iterate (loop continues)
- Failure
JSON metadata
{
"name": "loop_v2",
"active": true,
"bundleName": "default-nodes",
"bundleVersion": "1.0",
"nodeName": "LoopV2",
"category": "utility_components",
"deprecated": false,
"displayName": [{
"lang": "en",
"value": "Loop"
}, {
"lang": "it",
"value": "Loop"
}
],
"index": 4,
"inputs": [{
"name": "Input"
}
],
"outputs": [{
"name": "Done",
"level": "success"
}, {
"name": "InvalidArray",
"level": "warning"
}, {
"name": "HasNext",
"level": "warning"
}, {
"name": "Failure",
"level": "error"
}
]
}