i'm using Twilio flow to make an HTTP request to my API GW on AWS. My endpoint can take more than 10 seconds to complete, and so I'm getting timeouts from the Twilio Flow Make HTTP Request widget. I couldn't find a way to extend this timeout, nor a way to create a "delay" in the flow (and then I would have change my API to be async, and make the flow poll for a response).
Any ideas how I can overcome this issue?
You could do something like this:
You could use a variable to keep track of how many attempts have been made and give up after X number of tries.
You could also do this:
Good luck!