Hiya,
I’m using nextjs and using the airtable npm package.
I have an emails table and I want to check whether I already have an email in the base so thought I could try to retrieve one. Firstly…this seems like a GET but with a body…? Does that work?
...
I don’t quite understand the api documentation for how to retrieve one particular record. You can’t send a body in a get request can you so it all has to go in the url. I’m not sure of how to format it.
I have an emails table. I want to do a GET requ...
Hi,
I have two simple tables
votecount:
cityid (text e.g. ‘Birmingham’)emails (linked to emails)count (number)
emails:
emailid (number…)email (email address)votecount (linked to votecount table, displays the cityid)
On my react app, i want users...