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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
ducky
Advocate I
Advocate I

API - UpdateGroupAsAdmin - Assign a log analytics workspace

Im trying to assign to each Powerbi workspace a log analytics workspace via API. Below its part of my script that should do that. 
Only showing this as the rest Im sure its working. I believe that something is amiss with the request body. But this is how its constructed in the docs so i have no idea why its not working. 
 (im not using the profile id as its not in the documentation, although I tried with it too) 

 

$workspaceId 
 $profileId 

# Construct the headers and URL for the API call
$SPHeader = @{'X-PowerBI-profile-id' = $profileId}
$url = "https://api.powerbi.com/v1.0/myorg/admin/groups/$workspaceId"

$body = @{
      "logAnalyticsWorkspace" = @{
        "subscriptionId" = "subscriptionId"
        "resourceGroup" = "resourceGroupName"
        "resourceName" = "LogAnalyticsWorkspaceName"
      }
    }

    # Make the API call
    $response = Invoke-PowerBIRestMethod -Method 'Patch' -Url $url -Body $body -Verbose
    $response | ConvertTo-Json

 

1 REPLY 1
lbendlin
Super User
Super User

When you Invoke-PowerBIRestMethod you use relative URIs, not the full URL  (you would use the full URL with Invoke-RestMethod)

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.