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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.