This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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.
Solved! Go to Solution.
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();
}
});
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();
}
});
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |