Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
API GET https://api.powerbi.com/v1.0/myorg/admin/apps/{appId}/users - is returning 404-Not Found error
Hi @narmada ,
Did @jennratten 's reply help you?
If it helps, kindly Accept it as the solution. More people will benefit from it.
The permission on this is as follows
And the limilation is Maximum 200 requests per hour.
Best Regards,
Stephen Tao
Thank you for the reply.
I specified appId as - cf6bac1b-c760-473b-96c1-6ad7a1d056ed. It still gives 404 error.
Calling API as -
https://api.powerbi.com/v1.0/myorg/admin/apps/cf6bac1b-c760-473b-96c1-6ad7a1d056ed/users
Thanks Jennratten for the reply.
The account has necessary permissions because below API call is working for the account I am using :-
How to check, I am using the correct appID ?
https://api.powerbi.com/v1.0/myorg/admin/apps/cf6bac1b-c760-473b-96c1-6ad7a1d056ed/users
You are very welcome. 🙂 In the Power BI Service, open up the app you are wanting to query, then in the address bar, copy the portion of the URL that appears between apps/ and /reports, as shown by the red box in the snip below. When I copy this text, go to the web page below, click try-it, paste the text into the appId parameter field and click run, I get a response code 200 and can see the users in the json response body.
Admin - Apps GetAppUsersAsAdmin - REST API (Power BI Power BI REST APIs) | Microsoft Docs
Have you verified that the app ID you are using is correct? Do you have the required permissions and scopes to access this?
You should replace {appId} with the actual appId you are trying to query, like the example below. The 404 error means the resource being queried cannot be found.
GET https://api.powerbi.com/v1.0/myorg/admin/apps/f089354e-8366-4e18-aea3-4cb4a3a50b48/users
Response
{
"value": [
{
"displayName": "John Nick",
"emailAddress": "john@contoso.com",
"appUserAccessRight": "ReadExplore",
"identifier": "john@contoso.com",
"graphId": "3fadb6e4-130c-4a8f-aeac-416e38b66756",
"principalType": "User"
}
]
}
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!