Hello,
I'm attempting to perform a custom HTTP request to the Airtable API to retrieve a list of records and specify the fields returned by the API.
The Airtable API uses the following syntax:
Therefore, to limit the results to fieldid1
and fieldid2
, the query should look like this:
GET https://endpoint?fields=fieldid1&fields=fieldid2
OR
GET https://endpoint?fields%5B%5D=fieldid1&fields%5B%5D=fieldid2
This means the fields
query string parameter needs to be repeated for each value in the list.
I attempted to make the HTTP call using a JavaScript array and tried several other approaches, but ultimately I was unable to successfully make the HTTP call with callin.io.
Am I overlooking something?
I've resolved my issue!
This discussion was automatically closed 7 days following the last response. New replies are no longer permitted.