Hello Airtable Community,
I’m working on an integration where we need to detect if someone updates any field in a Form View (e.g., adds/removes/hides fields). I’ve explored the Airtable Metadata API, specifically the endpoint:
bash
CopyEdit
GET https://api.airtable.com/v0/meta/bases/{baseId}/views
While this API returns the list of views, including forms, it doesn’t seem to provide:
-
A timestamp or audit log of when a form was last modified
-
Information on which specific fields were updated or reordered
-
Any versioning or update tracking for forms
Questions:
-
Is there any way (via API or otherwise) to determine if a Form View’s field configuration has been changed (e.g., which fields are visible/required/ordered)?
-
Can we track when a particular Form View was last updated?
-
Is there a webhook or event system available for view updates?
Any guidance or workarounds would be greatly appreciated.