I have a need to retrieve a subset of records from a table via the REST API (GET method for table records). That API allows for a ‘filters’ parameter but I’ve been unable to use it with a record link field. I’ve tried formats that make sense to me but am hoping that I’m just overlooking some combination that will work.
As an example, lets say I have a field wxyz_link_left_column in the table that I’m filtering on. The records that I’m interested in retrieving all have the same “parent” with an ID of “12345”. I have tried each of the following filter parameters:
- filters=[{“field”:“wxyz_link_left_column”,“functionType”:“equal”,“arg”:“12345”}]
- filters=[{“field”:“wxyz_link_left_column”,“functionType”:“equal”,“arg”:"[“12345”]"}]
- filters=[{“field”:“wxyz_link_left_column”,“functionType”:“contains”,“arg”:“12345”}]
All result in server errors. Is it possible to filter using the record link field of a table? If not, I assume that I’ll have to replicate the parent ID in a simple text column and use that. Not sure what a record link is offering for app development or integrations.
