Lodol Docs

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

ParameterTypeRequiredDescription
itemsarrayYesThe list or collection to loop over.

Response

{
  "status": "success"
}

While loop

Repeat steps while a condition is true.

Parameters

ParameterTypeRequiredDescription
conditionstringYesA boolean expression checked before each iteration. Loop runs while this is true.

Response

{
  "status": "success"
}

On this page