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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.