ngocnicholas / airtable.net

Airtable .NET API Client
MIT License
141 stars 34 forks source link

Get list of columns by table name #45

Closed MDzyga closed 3 years ago

MDzyga commented 3 years ago

Hi, I know this subject was closed earlier but this could be really nice feature and a lot of developers could be really happy ;) Currently I have to send request to get records and group Fields by key to get all possible option. If you are not able to prepare this method, maybe you can change a response to always get all keys (currently I get fields with values).

ngocnicholas commented 3 years ago

This isn't possible with Airtable's REST API, and this API client is only for the REST API. To get a list of fields, I think you need to use their Metadata API: https://airtable.com/api/meta

MDzyga commented 3 years ago

Thanks