I'm trying to access the Metabase API on this route where I can retrieve the values from a specific query. I have this variable filtro_data defined in my SQL as a field value, and I'm trying to retrieve specific date values via the API. However, despite receiving a 200 error on the request, I'm still retrieving values for all possible dates for this query.
In this case, I'm making the request on this route via Postman and sending these parameters: {
"parameters": [{"type": "date/range","target": ["variable", ["template-tag", "filtro_data"]],"value": "2023-12-27T00:00:00-03:00~2023-12-27T00:00:00-03:00"
}]}
I've already tried using date/single and only one date, and I've also tried with other values that appear in the metabase example: past1days and it still doesn't work. Below I'll leave screenshots of how the variable appears in the SQL, how it's used in the UI, and how my Postman is making the request.
![]()


