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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
paulciorgovean
Frequent Visitor

error in Power Query M - getting data from API with JSON passed as body raw

I can do this API in Postman

POST API

URL: https://URL/portal/api/checkKanbanPart/

Body / Raw

{
    "Authorization": {
        "User""firstname.lastname",
        "Pass""password",
        "Key""keyvalue"
    },
    "Part": {
        "Sku""12345"
    }
}
 
I try to do this in M language:
let
url = "https://URL/portal/api/checkKanbanPart/",
body = "
""Authorization"": {""User"" : ""firstname.lastname"", ""Pass"" : ""password"", ""Key"" : ""keyvalue""},
""Part"" : {""Sku"" : ""12345""}",
Parsed_JSON = Json.Document(body),
BuildQueryString = Uri.BuildQueryString(Parsed_JSON),
Source = Json.Document(Web.Contents(url,[Headers = [#"Content-Type"="application/json"], Content = Text.ToBinary(body) ] ))
in
Source
 
but I get a Bad request error.
 
How can I write this in M Language in Power Query?
1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

Try building your JSON using records instead.

 

let
url = "https://URL/portal/api/checkKanbanPart/",
body = [Authorization = [User = "firstname.lastname", Pass = "password", Key = "keyvalue"],
Part = [Sku = "12345"]],

JSON = Json.FromValue(body),
Source = Json.Document(Web.Contents(url,[Headers = [#"Content-Type"="application/json"], Content = JSON ] ))
in
Source

 

Pat

Microsoft Employee

View solution in original post

4 REPLIES 4
paulciorgovean
Frequent Visitor

thank you for your answer Pat,

It seems to build the json correctly but I get an error in the last step

"DataFormat.Error: We found extra characters at the end of JSON input.
Details:
Value={
Position=106"

 

here is my query in Power BI and my API call in Postman.

 

paulciorgovean_0-1664807607187.pngpaulciorgovean_1-1664807827711.png

 

I would remove the Json.Document from the last step and see what you are getting from Web.Contents alone. Are you getting a successful response or not? If so, is it JSON format?

Pat

 

Microsoft Employee

Well, it turns out, the problem is the format of the API response. I copied the response into a file.json and tried to import it in PowerBI. It gave me the same error. 

Then I found this JSON format validator and found out there are some extra quotation marks. See screenshot.

paulciorgovean_0-1664889123735.png

I made the changes in the file.json and it pickes it up.

 

A workaround I found was to get the web.contents as you suggested and transform it into text. Then I break the text by delimiters and I get me values from there.

It's ugly but it works.

Another way is to follow up with the supplier of the API and get them to correct their format.

 

In the end, your solution worked, so thank you very much! I'll mark it as accepted.

ppm1
Solution Sage
Solution Sage

Try building your JSON using records instead.

 

let
url = "https://URL/portal/api/checkKanbanPart/",
body = [Authorization = [User = "firstname.lastname", Pass = "password", Key = "keyvalue"],
Part = [Sku = "12345"]],

JSON = Json.FromValue(body),
Source = Json.Document(Web.Contents(url,[Headers = [#"Content-Type"="application/json"], Content = JSON ] ))
in
Source

 

Pat

Microsoft Employee

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors