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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Charline_74
Resolver I
Resolver I

API Update Dataflow Name

I am trying to change the name of a dataflow with this API.

It works with the "Try it" on the documentation but I can't get it to work in Powershell script.

 

Charline_74_1-1672823798656.png

 

Can anyone help me?

4 REPLIES 4
Charline_74
Resolver I
Resolver I

Script PowerShell : 

$body=@{
    updateDetails=@(
        @{
            name = "DTF TEST Pipeline 1.0.2"
        }
    )
}

$jsonPostBody = $body | convertTo-JSON

$url = "https://api.powerbi.com/v1.0/myorg/groups/8569358a-549c-466a-894c-de113f5c4fb1/dataflows/8774dad3-3f17-4444-b73b-b82cea0812b6"

Invoke-PowerBIRestMethod -Url $url -Method Post -Body $jsonPostBody -Verbose -ContentType 'application/json'

 

Error Message : 

Invoke-PowerBIRestMethod : Une ou plusieurs erreurs se sont produites.
Au caractère Ligne:28 : 1
+ Invoke-PowerBIRestMethod -Url $url -Method Post -Body $jsonPostBody - ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : WriteError: (Microsoft.Power...werBIRestMethod:InvokePowerBIRestMethod) [Invoke-PowerBIRestMethod], AggregateException
    + FullyQualifiedErrorId : Une ou plusieurs erreurs se sont produites.,Microsoft.PowerBI.Commands.Profile.InvokePowerBIRestMethod
 
VERBOSE: Request Uri: https://api.powerbi.com/v1.0/myorg/groups/8569358a-549c-466a-894c-de113f5c4fb1/dataflows/8774dad3-3f17-4444-b73b-b82cea0812b6
VERBOSE: Status Code: NotFound (404)

which authentication are you using?
Is it service principal or user token for triggering the API?

Based on the error messgae, it seems that the particular account/app doesnt have access to that workspace which contains the dataflow




----------------------------------------------------------------------------------------------
Nandan Hegde (MSFT Data MVP)
LinkedIn Profile : www.linkedin.com/in/nandan-hegde-4a195a66
GitHUB Profile : https://github.com/NandanHegde15
Twitter Profile : @nandan_hegde15
MSFT MVP Profile : https://mvp.microsoft.com/en-US/MVP/profile/8977819f-95fb-ed11-8f6d-000d3a560942
Topmate : https://topmate.io/nandan_hegde
Blog :https://datasharkx.wordpress.com

@NandanHegde 

To run it I use a service account which is admin of the workspace

NandanHegde
Super User
Super User

Hey,

Can you please share the overall code that you are using and the error message when executed via powershell rather than just the image?




----------------------------------------------------------------------------------------------
Nandan Hegde (MSFT Data MVP)
LinkedIn Profile : www.linkedin.com/in/nandan-hegde-4a195a66
GitHUB Profile : https://github.com/NandanHegde15
Twitter Profile : @nandan_hegde15
MSFT MVP Profile : https://mvp.microsoft.com/en-US/MVP/profile/8977819f-95fb-ed11-8f6d-000d3a560942
Topmate : https://topmate.io/nandan_hegde
Blog :https://datasharkx.wordpress.com

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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