Hey everyone,
I'm using the the "airtable" npm package to hook into the Airtable API in my nodeJS project. I was playing around with how the API is initialized and realized that if I pass an "undefined" apiKey, that the queries still work as long as I pass in a baseId. This is how I'm initializing it...
const base = new AirtableApi({ apiKey }).base(baseId)
Does anyone know why this would work even if "apiKey" is undefined?
Thanks,
Chris