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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
roxane_cz
Frequent Visitor

Power BI REST API Authentication with Postman

Hello, 

 

CONTEXT

I am trying to get the lineage data, user data through PowerBI REST API, to be able to manage the usage of the tool and of the objects (reports, datasets, dataflows, ...) basically doing the admin. 

I have tried to configure some simple calls to the API with Postman with the help of this tutorial (How to Call the Power BI REST API from Postman - Carl de Souza). I have set up the App in Azure and I am the owner of the app. The client ID is the tenantID and the secret has been set up

 

ISSUE 

When I try this POST: https://login.microsoftonline.com/common/oauth2/token

I get this error message 

AADSTS65001: The user or administrator has not consented to use the application with ID 'xxxxxxxxxxx' named 'xxxxxxxx'

roxane_cz_0-1619446551489.png

 

Have anyone encountered this before? I have tried looking as some AAD forum threads but nothing that could help me... 

Thanks in advance!

2 ACCEPTED SOLUTIONS
kasiaw29
Resolver II
Resolver II

roxane_cz
Frequent Visitor

all good now 🙂 

 

using the app client id and the client secret value and all is working well 🙂 

View solution in original post

6 REPLIES 6
kalluu91
Regular Visitor

If you are using C#, the request to get access token would be as following:

 

var clientHandler = new HttpClientHandler
{
    UseCookies = false,
};
var client = new HttpClient(clientHandler);
var request = new HttpRequestMessage
{
    Method = HttpMethod.Get,
    RequestUri = new Uri("https://login.microsoftonline.com/<your_tenant_id>/oauth2/v2.0/token"),
    Content = new FormUrlEncodedContent(new Dictionary<string, string>
    {
        { "client_id", "<your_client_id>" },
        { "scope", "https://analysis.windows.net/powerbi/api/.default" },
        { "client_secret", "<your_client_secret>" },
        { "grant_type", "client_credentials" },
    }),
};
using (var response = await client.SendAsync(request))
{
    response.EnsureSuccessStatusCode();
    var body = await response.Content.ReadAsStringAsync();
    Console.WriteLine(body);
}

 

To get more details, see: https://kalcancode.wordpress.com/2025/02/18/powerbiclient-how-to-get-access-token/

WRVISHNU
New Member

Did u managed to resolve this issue ?

roxane_cz
Frequent Visitor

all good now 🙂 

 

using the app client id and the client secret value and all is working well 🙂 

Anonymous
Not applicable

Hi @roxane_cz ,

Please review the solution in the following links, hope they can help you resolve the problem.

REST API Silent Authentication (Token)

The user or administrator has not consented to use the application

Best Regards

kasiaw29
Resolver II
Resolver II

I'm not sure if I can help but check this post seems similar:

 https://stackoverflow.com/questions/59282141/aadsts65001-the-user-or-administrator-has-not-consented... 

 

Thanks,

Kasia 

Hi kasia, 

 

thanks for that link! 

seems, related, I have tried it but I still have an issue with a parameter, the redirection_uri for this object 😕 

so still not working

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors