Hello,
I am making several different API calls within the same workflow when a button is clicked.
The first step in my workflow makes an API call, however, I need time for the API call to take place (sometimes 10 seconds, sometimes up to 5 minutes).
Step 3 in my workflow is another API call however it RELIES on the first API call in first step being finished.
How can I make it so step 3 runs when step 1 is complete? The problem now is that it all runs instantly consecutively and it breaks the workflow because step 3’s API call can’t run without the data it will get after step 1’s API call finishes , which I need time for.
Thanks.