I am using the Baserow API to extract the data rows matching a boolean TRUE/FALSE flag in one of our database tables in Baserow.
Whatever I am trying, the filter condition for rows does not work. It always returns the all rows unfiltered. I went through your API Documentation already. Can you help?
Here is my API Call to extract all rows from a table that are flagged:
it looks like you are putting your filter in the request body, but it belongs in the query parameters too. So the key of the query string would be “filters” and the value of that query string will be the JSON you have in body (you will need to encode it).