Hello @John C as millisecond option is not available now, you may raise a feature request for that. For now, as a workaround, you can leverage Azure function to get the data, implement delay and process it to return result. Please let me know if that makes sense.
Logic Apps Delay with millisecond units
Hi,
Is there a way to introduce a delay in a loop that is less than one second EG 300 milliseconds
The Delay action does not support units less than 1 second (I also tried 0.x seconds which did not work).
Purpose:
I am looping through an external HTTP API call which is paginated.
The response tells you if there's more to retrieve - hence the loop.
I want to introduce a short 300 millisecond delay inside of the loop so that I do not overwhelm the service and not get throttled/denied.
I also tried inline javascript but it didn't seem to support settimeout (probably doesn't support async methods (callbacks, promise and await styles did not work)
Thanks!