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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
suddenly started error {"error":{"code":"InvalidRequest","message":"Embedding is disabled on tenant level"}}
here .It was working properly somedays before no clue what chnaged
var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view");
var tokenResponse = await client.Dashboards.GenerateTokenInGroupAsync(GroupId, dashboard.Id, generateTokenRequestParameters);
Solved! Go to Solution.
@kamalwtw wrote:
suddenly started error {"error":{"code":"InvalidRequest","message":"Embedding is disabled on tenant level"}}
here .It was working properly somedays before no clue what chnaged
var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view");
var tokenResponse = await client.Dashboards.GenerateTokenInGroupAsync(GroupId, dashboard.Id, generateTokenRequestParameters);
The error message indicates that your tenant admin has disabled the embedding capacity. If you're one of the admin, you can find the information by clicking "Admin portal"->"Tenant settings"->"Developer settings"(scroll to bottom).
Thanks .
Issue fixed .
Reason:report was created before tenancy changes implemented enabled embed =false.
so need to refresh report and create new version of report again to affect changes after tenancy changes enabled embed =true. at admin level (admin portal)
@kamalwtw wrote:
suddenly started error {"error":{"code":"InvalidRequest","message":"Embedding is disabled on tenant level"}}
here .It was working properly somedays before no clue what chnaged
var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view");
var tokenResponse = await client.Dashboards.GenerateTokenInGroupAsync(GroupId, dashboard.Id, generateTokenRequestParameters);
The error message indicates that your tenant admin has disabled the embedding capacity. If you're one of the admin, you can find the information by clicking "Admin portal"->"Tenant settings"->"Developer settings"(scroll to bottom).
Thanks .
Issue fixed .
Reason:report was created before tenancy changes implemented enabled embed =false.
so need to refresh report and create new version of report again to affect changes after tenancy changes enabled embed =true. at admin level (admin portal)