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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Dataflow Refresh via API Fails

Built a Logic App to automate data refresh using PowerBI API. Having an issue getting published Dataflow to refresh, while Dataset will refresh.

 

Was able to use the Swagger file from here on GitHub - https://github.com/Microsoft/PowerBI-CSharp/blob/master/sdk/swaggers/swaggerV2.json

 

The Dataset refresh worked, after setting the content type to JSON and refreshRequest="y"

 

The exact same setup for Dataflow refresh errors out with the following-

{
"error": {
"code": "BadRequest",
"message": "Bad Request",
"details": [
{
"message": "Unexpected character encountered while parsing value: y. Path '', line 0, position 0.",
"target": "refreshRequest"
}
]
}
}
 
I've tried changing to different characters, even numbers, but nothing worked successfully.
 
Anyone been able to programmitically refresh their PowerBI Dataflow?
2 REPLIES 2
Anonymous
Not applicable

We've resolved the issue. Posting here in case anybody else encountes the same problem. The problem was in the way API was called. Although during the call, part of the header we defined "Content-Type": "application/json", when passing
body = {'notifyOption': "MailOnFailure"} as data=body in the call was causing the error above.
response = requests.post(url=url, headers=headers, data=body.....)

After changing to
response = requests.post(url=url, headers=headers, json=body...) everything works.
It is strange that the same construct with data=body works fine with dataset referesh.

Anonymous
Not applicable

I know its been awhile but I am facing the same error with dataflows. Have you ever figured it out?

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.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

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.