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

POST request to invoke REST web service using basic authentication and receive JSON response

Hi All,

 

I am currently facing an issue where I need to invoke a REST web service using basic authorization, sending a POST request with a payload.

 

I tried to follow the following guide: https://community.fabric.microsoft.com/t5/Service/POST-request-data-sources-that-require-basic-authe...

 

And modified the following code with the endpoint URL, JSON body, and credentials that I should be sending:

let
    url = "https://api.example.com",
    body = "{""key"":""value""}",
    headers = [
        Authorization = "Basic " & Binary.ToText(Text.ToBinary("username:password"), 0)
    ],
    options = [
        Headers = headers,
        Content = Text.ToBinary(body),
        ManualStatusHandling = {400}
    ],
    result = Web.Contents(url, options)
in
    result

 

However, I always receive the following error: DataSource.Error: Web.Contents with the Content option is only supported when connecting anonymously.

 

When I go to the data source settings and choose anonymous authorization, I get the following error message: We couldn't authenticate with the credentials provided, please try again.

 

I am able to successfully pull the data I need using SoapUI, and am only facing this issue in Power BI. Any help would be appreciated.

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous 

Based the information you have offered, you need to get credential first, you can refer to the following link.

How to Authenticate to a REST API with basic Authe... - Microsoft Fabric Community

The link supply the similar problems.

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

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 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.

Top Solution Authors