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.
Hello guys.
I'm using the power-bi javascript client and I'm trying to get the parameters from a paginated report that the user selects in the dropdown.
The parameters are dynamic (will change from report to report and come from PowerBi). I didn't find any function in the library that would help me with that.
I built an external export function that will call the ExportTo Endpoint from powerbi, but I want to send the parameters the user selected for that report.
Do you know if this is achievable? If so, how?
Thanks!
Hi @thiago_maturana ,
Here are actions you can perform through URL access parameters:
URL parameters in embedded paginated reports – This capability, already supported in Power BI service, allows ISVs and developers to control their users experience by appending extra parameters to the generated Embed URL.
For reference: URL parameters in paginated reports in Power BI - Power BI | Microsoft Learn
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey @Anonymous , thanks for the reply.
Yes, I saw this possibility to send extra parameters to a report, but actually what I would like to achieve is get what the user selected.
Suppose the user has a paginated report with 2 parameters he defined in PowerBi. Parameter A=info1, Parameter B=info2. I need to get the selected parameter names and values somehow through the javascript client library (or in any other way) before calling the ExportTo Endpoint, so the report will be exported with the parameters the user previously selected.