Forum Discussion
Want to add Export Power BI Report Feature in my application where in embed the report
Hello,
I embedded the power Bi report into our application, now i want to add export feature in to it.
Like when we see reports on https://app.powerbi.com there is a bar on top of the report, where there is an option to export report into power point, pdf or print. Same feature i want to add into my application where i embedded the power BI report.
Can any help me in this ?
i searched alot, i found about exportToFile Api feature. But i want to add the same export feature into my app.
please help me in this.
Thanks,
Saad Ashraf
You will have to implement the asynchronous process described in the documentation. Your app needs to call the API with the export request, receive the job ID, then your app needs to poll the API with the job ID for the render status, and once rendering is complete, your app can then download the resulting blob and offer it to the app users for their download etc.
6 Replies
- lbendlin
Super User
You will have to implement the asynchronous process described in the documentation. Your app needs to call the API with the export request, receive the job ID, then your app needs to poll the API with the job ID for the render status, and once rendering is complete, your app can then download the resulting blob and offer it to the app users for their download etc.
- saadashraf
Helper I
Thanks for responding Ibendlin. I really appreciate that.
Can you please tell me which documentation you are reffering here for asynchronous process ?