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
nkarduri
New Member

Power BI Desktop and REST API - POST METHOD

Hi Everyone,

 

I'm trying to connect to my external application through RESTFUL WEB services from powerbi desktop.  I'm new to powerbi application, could you please help me out.

 

 

let
url = "https://XXX/api/",
body = "{""token"": ""XXXXXX"",""content"":""record"",""format"":""json"",""type"":""flat"",""returnformat"":""json"" 
}",
Source = Json.Document(Web.Contents(url,[ 
Headers = [#"Content-Type"="application/json"],
Content = Text.ToBinary(body) 
] 
))
in
Source

image.png

 

the external application supports only POST method - I tried with the Google Chrome postman with same parameters it worked. I don't know how to do it this in powerbi

 

error.png

 

 

Regards,

Naveen

5 REPLIES 5
Anonymous
Not applicable

Thanks,

 

I checked with https://blog.crossjoin.co.uk/2014/04/19/web-services-and-post-requests-in-power-query/ post, I'm getting same error.

 

Now, I'm getting the below error

 

DataSource.Error: Web.Contents with the Content option is only supported when connecting anonymously.
Details:
DataSourceKind=Web
DataSourcePath=XXXX/api

let
    url = "XXXXXXXXXXXX/api/",
    body = "{""token"": ""XXXXXXXXXXXXXXXXXXXXXX"",""content"":""record"",""format"":""json"",""type"":""flat"",""returnformat"":""json"" 
    }",
   Source  = Json.Document(Web.Contents(url,
   [ 
     Headers = [#"Content-Type"="application/json"],
     Content=Text.ToBinary(body)
   ]
   )
   )
in
   Source
Anonymous
Not applicable

Sorry, I am useless.  I just recalled Chris had posted about POST.  I would be doing to begging for help on google: https://community.powerbi.com/t5/Service/Anonymous-access/td-p/19136 🙂

 

 

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.