Anjali Mandowara
09/25/2025, 8:37 AMkapa.ai
09/25/2025, 8:38 AM<http://api.openai.com|api.openai.com> in your connect-src directive if you want to leverage AI-powered features. - Tags can be added to analytical objects via the API, but as of now, filtering by owner or tags within the Analytics Catalog UI is not yet available (this is planned for a future update). How to enable and use Analytics Catalog: 1. Enable the feature: Go to Settings > Early Access in your GoodData Cloud workspace and enable the Analytics Catalog for your workspace. Only one early access feature can be enabled per workspace at a time. 2. Access the Catalog: Once enabled, you should see the Analytics Catalog on your Home page. 3. Tagging objects: You can add tags to dashboards and other objects using the API. For example, to add a tag to a dashboard: bash curl $HOST_URL/api/v1/entities/workspaces/<workspace_id>/analyticalDashboards/<dashboard_id> \ -H 'Authorization: Bearer $API_TOKEN' \ -H 'Content-Type: application/vnd.gooddata.api+json' \ -X PATCH \ -d '{ "data":{ "attributes": { "tags": [ "products" ] }, "id": "<dashboard_id>", "type": "analyticalDashboard" } }' Your tags will then appear in the Tags column in the catalog. Limitations: - As of now, filtering by owner or tags in the UI is not available. - The documentation and feature set may change as this is an experimental feature. For more details, see the [Analytics Catalog documentation](https://www.gooddata.com/docs/cloud/experimental-features/analytics-homepage/) and the [Early Access Features guide](https://www.gooddata.com/docs/cloud/experimental-features/) for instructions on enabling experimental features. If you need to embed the Analytics Catalog itself via iframe, there is currently no official documentation or support for embedding this specific page as an iframe, unlike dashboards or the Analytical Designer, which have explicit embedding instructions. If you require this functionality, you may want to provide feedback to GoodData via their Slack or support channels, as the feature is still under development and user feedback is encouraged. If you need to embed dashboards or the Analytical Designer, refer to the official [embedding documentation](https://www.gooddata.com/docs/cloud/embed-visualizations/) for supported options and code examples. If you have further questions or need help with API calls or CSP configuration, please let me know!