Currently, when making a GET call to a table, while we can sort or filter, all fields are pulled when we only need a certain subset of fields, especially for our larger tables that have an extraordinary number of fields.
Our current workaround is to create a secondary table with only the fields we need for the API call, which then must be synced with the primary table (i.e., when a new record is created in the primary/master table, that record must also be created in the secondary table, adding an additional layer of table links). Rather than create a secondary table, we'd like to be able to make the call to a specific view of a table so that only specific fields are pulled during the API call.
Happy to further expand if you need more details.