Embed Power BI Report that Uses a Semantic Model
Hi,
I have a website that contains several Power BI Embeded Reports. They are embeded utilizing JSON scripting. However, they all currently have their reports and datasets in the same workspace.
I have a need to embed a report on the website that utilizes a semantic model - meaning the report(s) are in one workspace and the Dataset they are connected to resides on another workspace.
When I enter the Group, Report, and Dataset IDs, the report does not display. My assumption is that the embed process is getting confused because it is expecting the Report and the Dataset to be in the same Group/workspace ID.
Is this possible to do this?
The code I am using is below:
{
"json": {
"identities": [
{
"roles": [
"RegionRestricted"
],
"datasets": [
"xxx"
],
"username": "THIRD_PARTY"
}
],
"accessLevel": "View"
},
"groupId": "xxx",
"reportId": "xxx",
"settings": {
"filterPaneEnabled": false,
"navContentPaneEnabled": false
}
}