Forum Discussion
How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?
- 5 years ago
You can also do this in a Power BI Report using an OData connector and connecting to the following endpoint
http(s)://<yourserver>/reports/api/v2.0/CatalogItems
This has a report path column which you can split on / characters to create a hierarchy
You can also do this in a Power BI Report using an OData connector and connecting to the following endpoint
http(s)://<yourserver>/reports/api/v2.0/CatalogItems
This has a report path column which you can split on / characters to create a hierarchy
Got a error via OData connector using windows auth
Details: "Microsoft.Mashup.Engine1.Library.Resources.HttpResource: Request failed:
OData Version: 3 and 4, Error: The remote server returned an error: (404) Not Found. (Not Found)
OData Version: 4, Error: The remote server returned an error: (404) Not Found. (Not Found)
OData Version: 3, Error: The remote server returned an error: (404) Not Found. (Not Found)"
- d_gosbell5 years ago
Super User
Anonymous wrote:
Got a error via OData connector using windows auth
Sorry, there should be a /reports (or whatever you have configured for your portal url) in front of the /api so the endpoint should be as follows
http(s)://<yourserver>/reports/api/v2.0/CatalogItems