Goran Jakimovski
08/13/2025, 8:12 AMIsmail Karafakioglu
08/13/2025, 12:30 PMGoran Jakimovski
08/14/2025, 7:25 AMIsmail Karafakioglu
08/14/2025, 7:36 AM?hidefilters=filterId1,filterId2
which can be found here. By hiding all the filters, the end users will not be able to see the filters but because filterBar is still active, you can still access the saved view component. Would that work for you? Looking forward to your answer. Thank you.Goran Jakimovski
08/14/2025, 9:08 AMIsmail Karafakioglu
08/14/2025, 9:44 AM<https://www.gooddata.com/api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId}>
after obtaining filter context id, we need to get specific filter id by following API call:
<https://www.gooddata.com/api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId}>
After getting filter id, we can use
?hidefilters=filterId1,filterId2
in the url to remove them.
For example when I post use Iframe like so
<iframe src="<https://ismail.internal.cloud.gooddata.com/dashboards/embedded/#/workspace/{my-workspace-id/dashboard/{my-dashboard-id}>" height="700px" width="100%" frameborder="0"></iframe>
I get following result, which is showing all the filters
but after finding out which filter I want to remove, i can use
<iframe src="<https://ismail.internal.cloud.gooddata.com/dashboards/embedded/#/workspace/{my-workspace-id/dashboard/{my-dashboard-id}?hidefilters=region>" height="700px" width="100%" frameborder="0"></iframe>
I can see that region filter is removed.
Please let me know if you have any questions.Goran Jakimovski
08/14/2025, 9:55 AMGoran Jakimovski
08/14/2025, 9:55 AM