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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Power BI REST API

Hi everyone , I'm trying to get all the datasources for my organization.I'm using a service principal to connect to Power BI Service.
I made a function with PowerShell where I have made a this loop to get all the datasetId.


$OrgWorkspaces = Get-PowerBIDataset -Scope Organization
foreach ( $OrgWorkspace in $OrgWorkspaces)
{
$DatasetId= $($OrgWorkspace.Id)
# Write-Host $DatasetId

}


And this worked But when I added this line of code
$DataSources = Get-PowerBIDatasource -DatasetId $DatasetId
into the loop It didn't work ! I tried to put a DatasetId from the list I had
$DataSources = Get-PowerBIDatasource -DatasetId 1505150a-36f2-408e-a1e7-3531e6e0fccf *** but I have this error:
[Error] ERROR: Operation returned an invalid status code 'Forbidden'Exception :Type : Microsoft.Rest.HttpOperationExceptionRequest :Method : GETRequestUri : https://api.powerbi.com/v1.0/myorg/datasets/1505150a-36f2-408e-a1e7-3531e6e0fccf/datasourcesHeaders :Authorization : …User-Agent : MicrosoftPowerBIMgmt/1.2.0.0Response :StatusCode : ForbiddenReasonPhrase : ForbiddenContent : {"Message":"API is not accessible for application".

Any idea of this error please?

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Anonymous ,

According to the error message, it seems that you do not have the appropriate permission to view the data source information of this data set. Please confirm whether to Enable service principal authentication for read-only admin APIs and check whether to add the service principal as a member or admin to your workspace. Change your cmdlet scripts as below and check whether it can work well, you can refer the content in this blog: POWER BI ADMIN DATASETS

Note: Please make sure the dataset id is correct.

$DataSources = Get-PowerBIDatasource -DatasetId 1505150a-36f2-408e-a1e7-3531e6e0fccf ***  -Scope Organization

In addition, please review the following rest API and check whether it can get your desired result.

Admin - Datasets GetDatasourcesAsAdmin

Best Regards

View solution in original post

Anonymous
Not applicable

Thank you for your answer!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

According to the error message, it seems that you do not have the appropriate permission to view the data source information of this data set. Please confirm whether to Enable service principal authentication for read-only admin APIs and check whether to add the service principal as a member or admin to your workspace. Change your cmdlet scripts as below and check whether it can work well, you can refer the content in this blog: POWER BI ADMIN DATASETS

Note: Please make sure the dataset id is correct.

$DataSources = Get-PowerBIDatasource -DatasetId 1505150a-36f2-408e-a1e7-3531e6e0fccf ***  -Scope Organization

In addition, please review the following rest API and check whether it can get your desired result.

Admin - Datasets GetDatasourcesAsAdmin

Best Regards

Anonymous
Not applicable

Thank you for your answer!

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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