I’m using the “Watch Changes” module of Google Sheets. My objective is to trigger an automation from changing the value of a specific column in my spreadsheet.
The issues I’m facing is the following: As soon as I’m changing the value of a cell in that specific watched column, the webhook extension from make in google sheets sends 3 POST request in the span of a second triggering the make automation 3 times instead of once. Those requests all get accepted even though I’ve added filters for duplicates, because it happens in a span of a second not giving the automation to set the specific row as processed.
My primary goal is to fix the webhook logic, limiting make’s google sheet extension to only send one POST request at a time for each change in the watched column.
Thank you in advance for taking the time to help me.