I have successfully accessed Metabase and it's running locally with MongoDB. However, I'm a bit confused about whether it's possible for Metabase to retrieve an ID from the frontend, possibly through an iframe, to filter data. The ID would be the account ID currently used by the user, so that each user accessing my system receives different reports based on their respective IDs. Is this possible?
You can pay for row level security or use embedded dashboards with a hidden filter set by the embedding code.
for different reports, I would use either a custom route in the front end based on who the user is
I see. I tried it, and it works. Thank you!