Hi @Javier_Martinez,
It looks like you’re trying to do something similar to repeating a process until condition is met. One way to do this is by moving the part you want to repeat to another flow with webhook trigger.
Within this flow, towards the end, create a branch to determine whether to repeat the flow. If the decision is to repeat, you can trigger the flow using an HTTP trigger, as it has a webhook URL.
Another way is to create a loop that repeats a certain number of times, like 20. Each time it repeats, check if the condition you want is met. If it is, the process won’t continue. If not, it will repeat again. This method will repeat up to 20 times at most, but if the condition is met, the inside steps will be skipped
Please also take a look at: