Lodol Docs

Repeat

API actions for the Repeat integration.

Repeat

Run steps more than once.


End repeat

End the matching repeat-for-each section.

Response

{
  "status": "success"
}

End repeat

End the matching repeat-N-times section.

Response

{
  "status": "success"
}

End repeat

End the matching repeat section.

Response

{
  "status": "success"
}

Repeat for each item

Run these steps once for each item in a list. Useful for handling contacts, rows, files, or other items one at a time.

Parameters

ParameterTypeRequiredDescription
itemsarrayYes

Response

{
  "status": "success"
}

Repeat N times

Run these steps a fixed number of times. Use this when you know exactly how many times the steps should run.

Parameters

ParameterTypeRequiredDescription
countnumberYes

Response

{
  "status": "success"
}

Repeat while

Repeat these steps while something is true. Use this when you do not know ahead of time how many times the steps should run.

Parameters

ParameterTypeRequiredDescription
conditionstringYes

Response

{
  "status": "success"
}

On this page