Jul 28, 2023 11:13 PM
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=3
Headers: "Authorization": Bearer Personal_Access_token
Solved! Go to Solution.
Aug 04, 2023 02:50 AM
@msafi04 MyEnvoyAir wrote: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=3
Headers: "Authorization": Bearer Personal_Access_token
Have you checked if your API endpoint and headers are correct? Also, make sure you have a valid personal access token in the "Authorization" header. If you've done all that, please provide more details about the error message or any specific issues you're facing.
Aug 06, 2023 11:16 PM
Hi, thank you for your response. This is my code
Aug 07, 2023 01:12 AM
silly mistake from my side
https://api/airtable.com/v0/${baseName}/${tableName}
should be https://api.airtable.com/v0/${baseName}/${tableName}
Thank you all for your response