I have a Make scenario + webhook that I trigger when a form is submitted. It gets some extra data from our other API, sends a slack notification and updates the information for some columns in the row that was created.
This works fine 9/10 times, but there’s a weird issue we’re experiencing where the RowID isn’t found when using the Coda API module in Make. Sometimes it just cannot find the row, which makes the scenario fail. I’ve double checked and the failed rows exist and the data in the Make scenario looks fine.
Error message:
[404] Not Found: Could not find a row with the specified ID or name.
Automatic failure response was sent to the webhook.
My theory is that sometimes the automation in Coda hits too fast after form submit and when Make tries to update the row, it’s getting a cached response that hasn’t been cleared just yet. I have this theory as the time between form submission request handled in Make is very short (1-5 seconds) when this issue happens. When the automations are a bit delayed (5+ seconds), it works fine.
Has anyone had this issue? How did you resolve it?