If I create an Airtable with two tables in it, call them posts
and comments
, I can use either table name to delete records on the other table. In other words, if I have a comment with the ID recIA3d3kRJwccR4M
, I can call:
DELETE https://api.airtable.com/v0/BASE_ID/comments/recIA3d3kRJwccR4M
or:
DELETE https://api.airtable.com/v0/BASE_ID/posts/recIA3d3kRJwccR4M
This seems like a pretty important bug as it could lead to accidentally deleting records from the wrong table. Is this a known issue or something that you’re looking to fix?