Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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-
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.
I know its been awhile but I am facing the same error with dataflows. Have you ever figured it out?
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |