I currently have a table dashboard that uses 3 filters. one as text for filtering by client, and two for date setting.
If I change this filter values inside metabase it returns the expected results
Now if I send this paramaters over to my backend and generate the url as:
METABASE_SITE_URL +
"/embed/dashboard/" +
token +
`?client=${client}&init_date=${init_date}&end_date=${end_date}#theme=night&bordered=false&titled=true&hide_parameters=client,init_date,end_date`
I still get the default filter values results even if I harcode the filter values. What's going here?