Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

PowerShell export table of

Hello,

I would like to export using PowerShell one table from one dataflow of a given workspace but I cannot find the command...

 

Using PowerQuery in PowerBI Desktop, this is as below

 

 

 

 

let
    Source = PowerBI.Dataflows(null),
    WS = Source{[workspaceId="b79b08df-8014-4efd-abed-..."]}[Data],
    DF = WS{[dataflowId="c1579a50-583a-4dc9-9d96-..."]}[Data],
    #"1TABLE" = DF{[entity="1TABLE]}[Data]
in
    #"1TABLE"

 

 

 

 

 

In PowerShell, I can do the following

Login-PowerBIServiceAccount

Get-PowerBIWorkspace

Get-PowerBIDataflow -WorkspaceId b79b08df-8014-4efd-abed-...

and get as output two dataflows I have in this workspace

 

 

 

 

 

Id           : c1579a50-583a-4dc9-9d96-...
Name         : ONE
Description  :
ModelUrl     :
ConfiguredBy : my.name@company.com

Id           : 380b63a3-15e4-4bc0-9d34-...
Name         : TWO
Description  :
ModelUrl     :
ConfiguredBy : my.name@company.com

 

 

 

 

 

but now, I don't see how to export

I see Export-PowerBIDataflow -WorkspaceId <xx> -Id <yy> -OutFile out.json can export a dataflow but I need to export at entity level as in Power Query above

 

Any idea if this is feasible and how to make it using PowerShell?

note: I know how to export from PowerBI Desktop using R script or to export from PowerBI using PowerAutomate visual (with limitations) but I need to pull data from external

 

Thanks for your help!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

You can refer the following links to get it.

Powershell:

Power BI dataflows PowerShell scripts on GitHub

Description Module Name Download
Export all dataflows from a workspace ExportWorkspace.ps1 GitHub Location

REST API:

Dataflows - Get Dataflows

GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/dataflows

Best Regards

View solution in original post

3 REPLIES 3
Hariharan_R
Solution Sage
Solution Sage

Hi @Anonymous 

As per my understanding, you can't export the data from Power bI dataflow. The available rest API is export the dataflow script and import which just holds the metadata of the dataflow.

 

We have REST api to export the data from Power BI dataset ("Execute DAX script"). if you create dataset using your dataflow then you can export the data.

Thanks

Hari

Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


My Blog :: YouTube Channel :: My Linkedin


Anonymous
Not applicable

Hi @Anonymous ,

You can refer the following links to get it.

Powershell:

Power BI dataflows PowerShell scripts on GitHub

Description Module Name Download
Export all dataflows from a workspace ExportWorkspace.ps1 GitHub Location

REST API:

Dataflows - Get Dataflows

GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/dataflows

Best Regards

Anonymous
Not applicable

Hello yingyinr

Looking at powerbi-powershell/examples/dataflows/ExportWorkspace.ps1

Exports all the dataflow model.json from a Power BI workspace into a folder

 

Meaning structure can be exported but not the raw data, right?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.