I am looking to call an external api endpoint that process the result. If the response does not meet a condition then I want to sleep for 10 seconds and attempt it again and again until the response meets a condition then exit the loop.
Repeater loop is a fixed loop. I used it to create a prototype scenario. However, I don’t know how to force exit a Repeater loop or if that is even possible.
My loop would not run more than 300 seconds total. So 40 minutes max scenario is not an issue.
I required repeated checks every 10 seconds to see if data is present. Endpoint I am calling is going to return me data but requires few attempts.
Alternately…
Is there a way to break out of the repeater loop???
Is there a way to use the router and filter to return response and break out to the Scenario?