So it turns out what I was attempting isn’t possible, but the AT support team had a suggestion that works the same way:
The fields parameter will only work with the “List records” call (which doesn’t include a record ID in the url) – if you’re just ...
Oh interesting wrinkle is that this works: https://api.airtable.com/v0/APP_ID/TABLE_ID?api_key=API_KEY&fields[]=FIELD_TO_FILTER_TO but only if I don’t include the record in the endpoint.
Bummer is that using the field_id in the field query doesn’t re...
The field IDs are kind of annoying to get right now - I used the script here: Field ID instead of Field Name?
The API docs do mention very briefly how to query by field (under the “List Records” portion), but I can’t translate the javascript or @Evan...
Or alternatively, if that url can be modified to pull only a specific field (which I’ll do with the field id), that should work too. Do you know how to modify that url to add that query? That’s where I hit the issues I did above with the field query ...
Ahh nice @CH3V4L13R, yeah the record specific portion is working for me now. thanks
Now I’m stuck with the field id portion. Manipulation using the field names works fine, but I can’t manipulate using the field id. Have you used the Field IDs instead...