Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello all!!
I am playing with the powerBI API and I need help with.
I want to get the meta data from pages of a specific report . My goal is to make API calls to
ApiUrl/reports/{report-id}/{pagename}, and get meta data from it. Just like we do for reports and dashboards. I have tried the same function without success , got a 404 error.
Is it possible?
If not, what other options do I have?
Solved! Go to Solution.
Hi @Anonymous,
I want to get the meta data from pages of a specific report . My goal is to make API calls to
ApiUrl/reports/{report-id}/{pagename}, and get meta data from it.
If I understand you correctly, you should be able to use the report.getPages function(PowerBI-JavaScript) to get the list of pages within the report, and then use page functions to get the Filters or Visuals or other meta data of each page.
The sample code below is for your reference.
var report = powerbi.embed(reportContainer, config); report.on('loaded', function () { report.getPages().then(function (pages) { //pages[1].setActive();
page.getFilters().then(filters => { ... }); }); });
Regards
Hi @Anonymous,
I want to get the meta data from pages of a specific report . My goal is to make API calls to
ApiUrl/reports/{report-id}/{pagename}, and get meta data from it.
If I understand you correctly, you should be able to use the report.getPages function(PowerBI-JavaScript) to get the list of pages within the report, and then use page functions to get the Filters or Visuals or other meta data of each page.
The sample code below is for your reference.
var report = powerbi.embed(reportContainer, config); report.on('loaded', function () { report.getPages().then(function (pages) { //pages[1].setActive();
page.getFilters().then(filters => { ... }); }); });
Regards
Thank you for the reply!!
Are there such functions in c#?
My app is written in C# and the goal is to get the meta data and add them to a database.
I will use Javascript after all, thanks for all!
Hello all!!
I am playing with the powerBI API and I need help with.
I want to get the meta data from pages of a specific report . My goal is to make API calls to
ApiUrl/reports/{report-id}/{pagename}, and get meta data from it. Just like we do for reports and dashboards. I have tried the same function without success , got a 404 error.
Is it possible?
If not, what other options do I have?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
8 | |
7 | |
2 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |