Integromat can only receive notifications that a person edited your spreadsheet, not that an API updated it.
how can i handle this. I want to retrieve the image sent by my screen to update my google sheet. My google sheet integromat “wacth change” module is connected to my google sheet database to detect the presence of a new image url
I would do it through the app, but it should be possible through the sheet if you use an onChange event instead of an OnEdit event. The only thing is you’ll have to add extra code to your script to figure out which row triggered the event. Maybe an extra flag column that gets set whenever you process the row with the new image. Then when you spin through the rows, you only process the ones that don’t have the flag set yet.