Limit executions on similar webhooks

Hi all. I’m using an instant trigger (Clickup webhook - watch task updates). I don’t want my scenario to run more than once per minute on the same task - i.e., if this task ID was processed <1 minute ago, skip. Reason: prevent excessive scenario runs while the task is being edited/autosaved every few seconds.

Any suggestions for the simplest way to handle this? Thanks!

Hey @MattK

You might have to use a data store, to store the task ID which has been previously processed. Then, in your scenario configure a filter to check through the previously processed records and if the task ID matches, then the scenario doesn’t run any further.

I am sure other experts will chime in with much more effecient way to handle this.

1 Like