Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

PowerShell - Admin - Groups GetGroupsAsAdmin

Hi All,

 

While running below command in PowerShell:

Invoke-PowerBIRestMethod -Url "/admin/groups?$filter=state eq 'Deleted'&$top=10" -Method Get

I am recieving below error:

Invoke-PowerBIRestMethod : One or more errors occurred.
At line:1 char:1
+ Invoke-PowerBIRestMethod -Url "/admin/groups?$filter=state eq 'Delete ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : WriteError: (Microsoft.Power...werBIRestMethod:InvokePowerBIRestMethod) [Invoke-PowerBIRestMe 
   thod], AggregateException
    + FullyQualifiedErrorId : One or more errors occurred.,Microsoft.PowerBI.Commands.Profile.InvokePowerBIRestMethod

I am not entirely sure why this error is coming up? Any Ideas?

 

Thanks in advance!

 

Regards,

Max

  • Anonymous's avatar
    Anonymous
    3 years ago

    I was able to find a solution:

    $URI = '/admin/groups?$top=50&' + '$filter=type ne' + " 'Workspace'" + ' and state eq' + " 'Deleted'" 
    Invoke-PowerBIRestMethod -Url $URI -Method Get

     

    Regards,

    Max

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    I was able to find a solution:

    $URI = '/admin/groups?$top=50&' + '$filter=type ne' + " 'Workspace'" + ' and state eq' + " 'Deleted'" 
    Invoke-PowerBIRestMethod -Url $URI -Method Get

     

    Regards,

    Max