Dashboard Public API?

Herc
Level 2
Dashboard Public API?

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

2 Replies
Clรฉment_Stenac

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.

0 Kudos
Turribeach

This is now available in v12:

import dataiku
client = dataiku.api_client()
project = client.get_project('Project_Key')
dashboards_list = project.list_dashboards()
0 Kudos