Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Patryn999
Frequent Visitor

PBI Embedded - Fix API Version to stop breaking changes

Hi everyone,

 

Basically I believe the API behaviour has changed, which in turn has broken our client-facing dashboards. Is there any way to force the embedding process to use a fixed API version? Much like the styles are pulled through a version:

https://app.powerbi.com/13.0.9933.297/styles/reportembed.bundle.min.css

 

The situation is that we have had untouched repot (2 weeks) and untouched code (4 weeks) that was running fine, and now the exportdata command used during initial filter conditions on a slicer throws "Export data is not supported for this visual". And this is happening across many reports in different areas of the site.

 

Now I think I know 'Why' - basically we have some filters that need to be controlled only be the web-side to make the interface user-friendly. These are 'hidden' by pushing them behind a white square so they are no longer visible but still operational (changing visibility to not-visible breaks slicer so you can no longer interact with it).

 

However I don't know 'Why now?' this behaviour was fine and now isn't, and from my end we've got untouched codebases that fail in an identical manner which is a pretty strong indicator it wasn't  us.

 

 

1 REPLY 1
Patryn999
Frequent Visitor

Confirmed to have same behaviour with example app "App owns data".

 

If you paste the code below into EmbedReport.cshtml and alter the ID of the slicer to one on your first page you can reproduce the error. Slicer should be available on render but this throws an exception into the console, instead of the slicer selections.

 

report.on("rendered", function () {
        report.getPages().then(function (pages) {
            var page = pages.filter(function (page) { return page.isActive; })[0];
            page.getVisuals().then(function (visuals) {
                var slicer = visuals.filter(function (visual) {
                    return visual.type == "slicer" && visual.name == "d0a7da43b96655bf369e";
                })[0];

                if (slicer) {
                    slicer.exportData().then(function (data) { console.log(data); });
                }
            })

        })
    });

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.