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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

JSON column type in Power BI Dataflow

I am using the following code to pull in data from an API in a Power BI Dataflow

 

Json.Document(Web.Contents("https://"&APIEnvironment&"/path/" & "?limit=100", [ Headers=[Authorization="Bearer " & #"AccessToken"]]))

 

This pulls back a column with nested record which I can expand.  

 

As an alternative is there anyway of not expanding the nested records and just having the pulled back field as a JSON type.  I would like to then connect to the dataflow and expand the JSON type in the Power Query in the desktop version.

1 ACCEPTED SOLUTION
edhans
Community Champion
Community Champion

No. I am not aware of any way to return embedded lists, records, etc. in a loaded dataflow. 
This simple table:

let
  Source = #table(
            {"ID", "Name", "City"},
                {
                    {123, "Alice", {1.10}},
                    {456, "Bob", {100.150}}
                }
          )
in
  Source

has a nested list in the third column. When that is loaded in a dataflow nothing comes through into Power BI's Power Query. it is just a blank field.

edhans_0-1665024960863.png

You will need to do the expansion in the dataflow, or connect to the JSON directy from Power BI's Power Query if you want to expand it there.

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

2 REPLIES 2
Neomarty
New Member

I faced the same issue and struggled to have the pulled back field as a JSON type. Eventually, I ended up converting the JSON into text type (jsontext variable below) using the code below. The text can then be parsed and transformed into JSON using Power Query GUI.

 

 

 

let
    Source = Query(),
    jsontext = Text.FromBinary(Json.FromValue(Source)),
    #"Convert to table" = Table.FromValue(jsontext),
    #"Changed column type" = Table.TransformColumnTypes(#"Convert to table", {{"Value", type text}})
in
    #"Changed column type"

 

 

 

Function code:

 

 

let
    Source = () as list =>
    let
    Token = "token"
    body = Text.ToBinary("{""limit"":1000000}"),
    actualUrl = "url",
    options = [RelativePath="relative_path" ,
    Headers =[#"Content-type"="application/json",Authorization="Bearer "&""& Token &""],
    Content= body
    ],
    result = Web.Contents(actualUrl, options),
    #"Imported JSON" = Json.Document(result, 65001)
in
    #"Imported JSON"
in
    Source

 

 

 

 

edhans
Community Champion
Community Champion

No. I am not aware of any way to return embedded lists, records, etc. in a loaded dataflow. 
This simple table:

let
  Source = #table(
            {"ID", "Name", "City"},
                {
                    {123, "Alice", {1.10}},
                    {456, "Bob", {100.150}}
                }
          )
in
  Source

has a nested list in the third column. When that is loaded in a dataflow nothing comes through into Power BI's Power Query. it is just a blank field.

edhans_0-1665024960863.png

You will need to do the expansion in the dataflow, or connect to the JSON directy from Power BI's Power Query if you want to expand it there.

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.