Reputation: 11
I am working on integrating Power BI reports into our web application. The embedding works fine, we are using the save() and saveAs() in the js lib to save our reports but in the edit mode and create mode attempting saving, the below error is throwing.
Something went wrong
Unable to save the report
Please verify you have the right permissions or contact support. If you contact support, please provide these details.
Upvotes: 1
Views: 677
Reputation: 49
Make sure you generated the embed token with access to the report, the dataset, and the workspace where the dataset is located. If you want to save the report to another workspace, the token needs to have access to the target workspace. And make sure your application has the following scopes:
You must also set the allowEdit : true flag for each report that customer needs to edit. For setting allowEdit to true you can use following JSON request body:
{
"datasets": [
{
"id": // ID of the dataset
}
],
"reports": [
{
"allowEdit": true,
"id": // ID of the report
}
]
}
To contact support you can use the link, https://support.powerbi.com/ and provide the following information:
Please refer:
Upvotes: 1