Hi,
I want to throttle a power automate flow to make sure that I do not execute it again 15minutes after the previous execution.
the trigger is a simple update in an entity in dataverse. (like the account table)
so when there is an update, the flow starts and do it's job.
but if there is another update coming from the account table, I want to wait 15 min before running the flow.
so my flow should be trigger 1 time every 15 minutes maximum
but when there is no update in the account table, I do not want to run the flow at all.
also... if there are multiple updates in the account table in the 15min, I want to execute the flow 1 time only and not 1 execution per update in the account table)
so for example, I update 1 customer, the flow starts, I update 5 additional customers in the next 5 minutes, I have to wait 15 minutes before running the flow 1 time only, and after that the flow will not run again until a customer is updated.
how to do this?
any template?
thanks