Good afternoon,
I’ve been searching for a while to find a solution and I’m at a loss so any help would be greatly appreciated.
I have a process that works as follows:
- Create an asynchronous upload request which returns a task ID
- Poll a status endpoint with the task ID from step 1
- If status endpoint says complete, continue
- Else .. wait a minute (or some amount of time) and repeat step 2
I’m wondering what the most “zapiest” way is to handle this flow. Searching for “polling” gives a lot of answers in regards to polling triggers but I don’t see how that would help as the task ID is unique to the action in step 1.
Any suggestions would be greatly appreciated.
Thanks.

