Category / Section
How to retrieve the list of dashboards from Bold BI Server to Embed in Your Application?
Published:
To get the list of dashboards from the Bold BI server to embed in your application, you can use the REST API provided by Bold BI. This API allows you to retrieve the list of dashboards using the GET HTTP method.
On-Premise Bold BI Version
For on-premise Bold BI version, use the following API endpoint:
https://{yourdomain}/bi/api/site/<site_identifier>/v2.0/items?ItemType=2
Replace {yourdomain}
with your Bold BI server domain and <site_identifier>
with the site identifier of your Bold BI server.
Cloud Tenant Bold BI Version
For cloud tenant Bold BI version, use the following API endpoint:
https://{yourdomain}/bi/api/v2.0/items?ItemType=2
Replace {yourdomain}
with your Bold BI server domain.
You can use this REST API in your embedded application to get the list of dashboards and embed it.