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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
sreenubojja
New Member

API to get Dashboard tile custom hyperlink

We embedded PowerBI dashboard using JavaScript in my application. We are getting reportId for the tiles created using report, so I can redirect the user to that report in tileClicked event. But, for the tiles with custom hyperlink we are not getting either reportId or custom hyperlink in tileClicked event details.

 

Is there any API to get the custom hyperlink of a tile? so, I can redirect to that url on tile click.

 

1 ACCEPTED SOLUTION
sreenubojja
New Member

I'm able to get it.

 

var url = "https://api.powerbi.com/v1.0/myorg/dashboards/" + dashboardId + "/tiles/" + event.detail.tileId;
                        $.ajax({
                            url: url,
                            type: "GET",
                            dataType: 'json',
                            headers: {
                                "Authorization": "Bearer " + embedToken
                            },
                            success: function (data) {
                                var win = window.open(data.action.openUrl.targetUrl, '_blank');
                                win.focus();
                            }
                        });

View solution in original post

1 REPLY 1
sreenubojja
New Member

I'm able to get it.

 

var url = "https://api.powerbi.com/v1.0/myorg/dashboards/" + dashboardId + "/tiles/" + event.detail.tileId;
                        $.ajax({
                            url: url,
                            type: "GET",
                            dataType: 'json',
                            headers: {
                                "Authorization": "Bearer " + embedToken
                            },
                            success: function (data) {
                                var win = window.open(data.action.openUrl.targetUrl, '_blank');
                                win.focus();
                            }
                        });

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.