Forum Discussion
Move Power BI Reports between PBI Report Servers via script
Hi All,
Do you know if it's possbile to move Power BI Reports between PBI Report Servers via script like this one below for ssrs:
Thank you.
Regards,
Pawel
It can be done however you can't use the rss scripts to do it, those are based on the SOAP APIs. You can use the REST APIs and Powershell to achieve what you want. Sample PS script that you can build off of is here:
API Sample
https://github.com/Microsoft/Reporting-Services/tree/master/APISamples/powershell
API Swagger Docs
2 Replies
- mgmeyer
Power BI Team
It can be done however you can't use the rss scripts to do it, those are based on the SOAP APIs. You can use the REST APIs and Powershell to achieve what you want. Sample PS script that you can build off of is here:
API Sample
https://github.com/Microsoft/Reporting-Services/tree/master/APISamples/powershell
API Swagger Docs
- AnonymousNot applicable
Great :) Will check it. Thank you.