The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I am trying to do a simple GET request using Airtable API in Postman to retrieve my records. But it's not working. I am a newbie here, any help is much appreciated.GET: https://api.airtable.com/v0/appkEdlvHkUVyG1QC/Sample%201?maxRecords=3Headers: "Au...
silly mistake from my sidehttps://api/airtable.com/v0/${baseName}/${tableName}should be https://api.airtable.com/v0/${baseName}/${tableName} Thank you all for your response
Hi, thank you for your response. This is my code const airtableURL = `https://api/airtable.com/v0/${baseName}/${tableName}`;const headers = {Authorization: "Bearer API_KEY","Content-Type": "application/json",};const options = {method: "GET",headers: ...
* ScopesWith this token, you will be able to:data.records:readSee the data in recordsdata.recordComments:readSee comments in recordsschema.bases:readSee the structure of a base, like table names or field typesI have done both.