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
| Parameter | Type | Required | Description |
|---|---|---|---|
items | array | Yes |
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
| Parameter | Type | Required | Description |
|---|---|---|---|
count | number | Yes |
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
| Parameter | Type | Required | Description |
|---|---|---|---|
condition | string | Yes |
Response
{
"status": "success"
}