Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I was looking around and I couldn't find documentation with a consolidated list of all possible embed URL parameters for Power BI Service. I know when you are embedding a report, the auto generated URL is of the form:
https://app.powerbi.com/reportEmbed?reportId=[ReportID]&autoAuth=true&ctid=[ClientID]
I know there are additional url parameters that you can tack on the end to control the functionality of the embeded report, and I believe I am aware of most of them. However, there could be a couple parameters that I've never happened to run accross and would never know that it would be possible to use. The ones I'm aware of at the moment are:
I would appreciate it if anyone had any additional parameters they were aware of that they could add, or if the documentation that has all this information exists somewhere, as I couldn't find it through quite a lot of google searching. Thanks!
I found this but not documented in any PBI documentation. Works for embedding report URL in Power Canvas App (Power BI Tile control)
disableSensitivityBanner: Allows to hide Sensitivity Label/Banner on report
Example: ?disableSensitivityBanner=true
reportSection: This parameter allows you to navigate to a specific report page by providing the page name.
Example: ?reportSection=ReportSectionName
filter: You can apply filters directly within the URL to display only certain data when the report loads.
Example: ?filter=TableName/FieldName eq 'value'
bookmark: Navigate to a specific bookmark in the report by specifying the bookmark name.
Example: ?bookmark=BookmarkName
pageName: Similar to reportSection, it allows you to open a report to a specific page.
Example: ?pageName=ReportPageName
pageView: This parameter controls the view mode of the page, such as "FitToWidth" or "ActualSize."
Example: ?pageView=FitToWidth
navContentPaneEnabled: This parameter shows or hides the navigation pane.
Example: ?navContentPaneEnabled=false
filterPaneEnabled: Shows or hides the filter pane.
Example: ?filterPaneEnabled=false
fullscreen: Opens the report in full-screen mode.
Example: ?fullscreen=true
autoplay: Sets the report to automatically play through pages.
Example: ?autoplay=true
chromeless: Opens the report without the Power BI navigation chrome.
Example: ?chromeless=1
ctid: The tenant ID, which can be used when you want to embed a report for users from a specific tenant.
Example: ?ctid=tenantGUID
groupId: Specifies the workspace where the report is located.
Example: ?groupId=workspaceGUID
config: Allows passing in a configuration string that can control visual configuration settings.
Example: ?config=configurationString
I found one more
@SethB Did you happen to come across a list of parameters? I'm also on the lookout.
I still have not come across a comprehensive list of embeding parameters. The ones I listed out are still the only ones that I am aware of but I will update this if I find out any more. I appreciate that you are also on the lookout for these as well @jared5.
Hi @SethB ,
With parameters, you can filter the report for one or more values, even if those values contain spaces or special characters. The basic syntax is fairly straightforward; start with the report URL, add a question mark, and then add your filter syntax.
For more details, you can read related document: Filter a report using query string parameters in the URL - Power BI | Microsoft Learn
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I'm aware of filtering a report with a parameter, that uses the "filter" parameter that I listed above. I was looking for any other embed URL parameters that I didn't list above. Maybe I already listed all of them though, I'm not sure.