Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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();
}
});
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 7 | |
| 4 | |
| 4 | |
| 3 |