Hey there! I am trying to stream data from an Airtable base to a local file.
I am working in go and using this client airtable package - github.com/mehanizm/airtable - Go Packages
I want to be able to detect whether a record has been modified, without having to use the original data and comparing it to the current data in the base.
A solution I explored was to add the “Last modified time” field to all records, which would solve all my problems. But there is no way of doing that through API and has to be done manually. Not a great user experience!
I also am aware there is a webhook but am not keen to go down that route.
Is there any automated way I can get the “Last modified time” or any information that a change has been made and can narrow it down by the record?
Thanks!