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
Ybam
Helper I
Helper I

PowerShell Invoke-PowerBIRestMethod -Method Post WriteError

Hi, 

I have a PowerShell script for Rebind my report in a workspace. 

 

$clientId = "myClientId"
$clientSec = "myClientSecret" | ConvertTo-SecureString -AsPlainText -Force
$tenantId = "myTenantId"

$credential = New-Object System.Management.Automation.PSCredential($clientId$clientSec)
Connect-PowerBIServiceAccount -ServicePrincipal -Credential $credential -TenantId $tenantId


$Workspace = Get-PowerBIWorkspace -Name WorkspaceName
$WorkspaceId = $Workspace.Id
write-host $WorkspaceId
$report = Get-PowerBIReport -WorkspaceId $WorkspaceId -Name ReportName
$reportId = $report.ID
write-host $reportId
$dataset = Get-PowerBIDataset -WorkspaceId $WorkspaceId
$datasetId = $dataset.ID
write-host $datasetId


# Get token
$token =  Get-PowerBIAccessToken -AsString
write-host $token

# Building Rest API header with authorization token
$authHeader = @{
   "Authorization"$token
   "Content-Type" = "application/json"
}

# POST body 
$postParams = @{
    "datasetId" = "$datasetId"
}

$jsonPostBody = $postParams | ConvertTo-JSON

# Rebing reports 
Invoke-PowerBIRestMethod -Url "https://api.powerbi.com/v1.0/myorg/groups/$($WorkspaceId)/reports/&($reportId)/Rebind" -Method Post -Headers $authHeader -Body $jsonPostBody  -Verbose

 

When I run that I get this error:

"Invoke-PowerBIRestMethod : Une ou plusieurs erreurs se sont produites.
Au caractère path\Desktop\TestRebind.ps1:38 : 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"

 

My token looks like : "Bearer *********"

My API permissions are Read and Write ALL except for Tenant because I am not admin

 

Someone can help me please ? 

1 ACCEPTED SOLUTION

Hi @v-lionel-msft , 

Yes I'm sure I have these permissions. 

My error was fixed. 

My problem was the "Headers" parameter of my invoke method. 

I didn't need the token since I was already logged in.

View solution in original post

3 REPLIES 3
v-lionel-msft
Community Support
Community Support

Hi @Ybam ,

 

thank you for your sharing.

 

Best regards,
Lionel Chen

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

v-lionel-msft
Community Support
Community Support

Hi @Ybam ,

 

Do you really have these two permissions?

v-lionel-msft_0-1606973007675.png

 

Best regards,
Lionel Chen

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

 

Hi @v-lionel-msft , 

Yes I'm sure I have these permissions. 

My error was fixed. 

My problem was the "Headers" parameter of my invoke method. 

I didn't need the token since I was already logged in.

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.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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 Kudoed Authors