I’m fairly new to Coda. I’m integrating with OneDrive through Make.com.
I have a table “DB Archive”… that contains records from other tables that have been archived (obviously). Each record in “DB Archive” has a column with the onedrive FileID.
If a record is deleted from the “DB Archive” table I want the corresponding File to be deleted from Onedrive…
In Make.com there is a module “Watch Updated Rows”… but a delete doesn’t seem to trigger an update.
Any suggestions how to capture deleted records in a table through the API?
[UPDATE]
I’ve been thinking about it a little longer
When there is not way to trigger something upon delete through the API… maybe the following is a workaround.
I create a new table “DB Remove from OneDrive” table and add a column “OneDrive FileID”.
When I delete a record from my “DB Archive” table, I insert a new record into “DB Remove from OneDrive”.
Make.com can listen to new records being created in a specific table. With the “OneDrive FileID” i can remove the specific file from OneDrive! Tada!
Downside: I would need to create an extra table in Coda to be able the trigger Make.com with it.