Loops by Lodol
API actions for the Loops by Lodol integration.
Loops by Lodol
Repeat actions using Lodol's built-in Loops provider.
End for-each block
This action marks the end of a for-each block.
Response
{
"status": "success"
}End while block
This action marks the end of a while block.
Response
{
"status": "success"
}For each item
Loop over each item in a list.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
items | array | Yes | The list or collection to loop over. |
Response
{
"status": "success"
}While loop
Repeat steps while a condition is true.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
condition | string | Yes | A boolean expression checked before each iteration. Loop runs while this is true. |
Response
{
"status": "success"
}