Reputation: 59
Scenario: We consumed Power BI reports into our application. The user is changing report style (Example: Bar to Donut) on-demand and the user wants the selected style to export into PDF or PowerPoint (.ppt).
Is it possible with the Power BI REST API or Power BI SDK? If yes, what are some options or reference materials with code samples?
Upvotes: 0
Views: 1930
Reputation: 129
To export the customized Power BI Embedded report as PDF or PowerPoint, you need the exportToFile
API. The exportToFile
API enables exporting a Power BI report by using REST calls, and it supports concurrent export job requests. You have to create an export job first and then follow the below steps:
Please find the reference and code here: Step 1 - sending an export request
Upvotes: 0