Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on January 13, 2020 3:17PM
Likes: 3
Replies: 2
I'd like to retrieve the complete list of dashboards in the system via the Public API - by project is probably fine.
I'm struggling to fine an API for this? Can anyone help?
Herc
Hi,
Unfortunately, Dataiku does not currently include an API for managing dashboards. We will be taking good note of your interest.
As a workaround, you can enumerate the folders in the DSS data dir: config/projects/XXXX/dashboards. Each json file contains information about one dashboard.
This is now available in v12:
import dataiku client = dataiku.api_client() project = client.get_project('Project_Key') dashboards_list = project.list_dashboards()