Using Query Parameters in Connectors Functions

hello @ermingut, thanks for posting!! here’s a quick guide on how to filter the Table API Connector Function based on parameters.

  1. run a Connector Function GET https://{{instance_name}}.tulip.co/api/v3/tables/$tableID$ and find the name for the field in your Table you’d like to filter by:
  2. add Query Parameters to your Connector Function GET https://{{instance_name}}.tulip.co/api/v3/tables/$tableID$/records as such:
    filters.0.field = name of a Table column
    filters.0.arg = the value to compare to
    filters.0.functionType = comparison function

this will return the filtered Table Records based on the Filters provided. I would like to point out that you can add multiple filters by entering sequential filters and incrementing the index (where it’s set to 0 in the above example).

for further resources, I’d recommend looking at:

does this answer you question?? let us know!!

1 Like