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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Charline_74
Helper III
Helper III

API Dataflows - Update Dataflow

Hello, 

I am trying to set up this API:

https://learn.microsoft.com/en-us/rest/api/power-bi/dataflows/update-dataflow

In order to change the name of a dataflow.

My code: 

$body=@{
    updateDetails=@(
        @{
            name = "DTF TEST Pipeline 1.0.1"
        }
    )
}
Invoke-PowerBIRestMethod -Url "https://api.powerbi.com/v1.0/myorg/groups/4c2d4aa2-c195-4ecf-804a-be2afff547c6/dataflows/2ed4a772-827d-4d3b-87aa-6c0be92fc79f" -Method Patch -Body $body

But I have this error:

Invoke-PowerBIRestMethod : Une ou plusieurs erreurs se sont produites.
Au caractère Ligne:21 : 1
+ Invoke-PowerBIRestMethod -Url "https://api.powerbi.com/v1.0/myorg/gro ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : WriteError: (Microsoft.Power...werBIRestMethod:InvokePowerBIRestMethod) [Invoke-PowerBIRestMethod], AggregateException
    + FullyQualifiedErrorId : Une ou plusieurs erreurs se sont produites.,Microsoft.PowerBI.Commands.Profile.InvokePowerBIRestMethod
 
Invoke-PowerBIRestMethod : Encountered errors when invoking the command: {
  "code": "BadRequest",
  "message": "Bad Request",
  "details": [
    {
      "message": "Unexpected character encountered while parsing value: S. Path '', line 0, position 0.",
      "target": "dataflowUpdateInformation"
    }
  ]
}
Au caractère Ligne:21 : 1
+ Invoke-PowerBIRestMethod -Url "https://api.powerbi.com/v1.0/myorg/gro ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : WriteError: (Microsoft.Power...werBIRestMethod:InvokePowerBIRestMethod) [Invoke-PowerBIRestMethod], Exception
    + FullyQualifiedErrorId : Encountered errors when invoking the command: {
  "code": "BadRequest",
  "message": "Bad Request",
  "details": [
    {
      "message": "Unexpected character encountered while parsing value: S. Path '', line 0, position 0.",
      "target": "dataflowUpdateInformation"
    }
  ]
},Microsoft.PowerBI.Commands.Profile.InvokePowerBIRestMethod

Can you help me?

Thanks

Charline

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @Charline_74,

According to the error message, it seems your request body part include unexpected characters, so these quests failed to be verified on sever side.

400 Bad Request - HTTP | MDN (mozilla.org)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @Charline_74,

According to the error message, it seems your request body part include unexpected characters, so these quests failed to be verified on sever side.

400 Bad Request - HTTP | MDN (mozilla.org)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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