Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I would like to know if it is possible to change the data source of a dataflow with an API.
For example:
I have a pipeline in which I have a workspace of DEV, TEST and PROD.
And I would like that when I deploy the dataflow on the different environments the data source of the dataflow changes too.
For info I use gataway in my dataflow
Solved! Go to Solution.
I have found out how to do this and here is the script:
$groupId = ""
$dataflowId = ""
$dataflowUpdate = "{
'name' : 'Updated Dataflow Name',
'description' : 'This is the updated dataflow description'
}"
$url = "groups/$groupId/dataflows/$dataflowId"
Invoke-powerBIRestMethod -Method Patch -Url $url -Body $dataflowUpdate -ContentType "application/json"
I have found out how to do this and here is the script:
$groupId = ""
$dataflowId = ""
$dataflowUpdate = "{
'name' : 'Updated Dataflow Name',
'description' : 'This is the updated dataflow description'
}"
$url = "groups/$groupId/dataflows/$dataflowId"
Invoke-powerBIRestMethod -Method Patch -Url $url -Body $dataflowUpdate -ContentType "application/json"
Hi @Charline_74,
I check on the power bi rest API document but not found any Dataflow API suitable to your requirement. Perhaps you can submit an idea for adding support to use rest API change the dataflow data sources.
Microsoft Power BI ideas
Regards,
Xiaoxin Sheng
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
12 | |
5 | |
3 | |
2 | |
2 |
User | Count |
---|---|
13 | |
12 | |
7 | |
5 | |
4 |