How to Find Tenant ID in Power BI

Cody Schneider7 min read

Knowing where to find your Power BI Tenant ID is one of those small but critical pieces of information you'll inevitably need. Whether you're setting up an application, automating tasks, or working with a consultant, having this ID handy is essential. This guide will walk you through a handful of straightforward methods to locate it in just a few moments.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

What is a Power BI Tenant ID, Anyway?

Think of your company's entire suite of Microsoft cloud services (Office 365, Azure, Power BI, etc.) as an apartment building. The Tenant ID is the primary, unique address for that entire building. It’s an identifier for your whole organization within the Microsoft cloud ecosystem.

When you sign up for a Microsoft business service like Power BI, Microsoft creates a "tenant" for your organization in Azure Active Directory (which is now called Microsoft Entra ID). This tenant is a dedicated space to manage your users, data, security, and services. Each tenant is assigned a unique Tenant ID, and this ID is the same across all Microsoft services you use.

So, your Power BI Tenant ID is the same as your Office 365 Tenant ID and your Azure Tenant ID. It's a globally unique identifier (GUID), which looks like a string of letters and numbers in a format like this: 1a2b3c4d-5678-90ef-gh12-i3jklmn45op6.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Why Would You Need Your Tenant ID?

You might go a long time without ever thinking about your Tenant ID, but it becomes crucial in several common situations:

  • Embedding Analytics: If you're embedding Power BI reports or dashboards into a custom application for your customers (a model known as "app-owns-data"), you need the Tenant ID to authenticate your application properly.
  • API Automations: When using the Power BI REST API to automate administrative tasks, export reports, or manage workspaces, the Tenant ID is often a required parameter for making authenticated calls.
  • Connecting Third-Party Apps: Many external tools and services that integrate with Power BI require the Tenant ID during the setup process to securely connect to your organization's data.
  • Administrative Scripting: IT admins and power users who use PowerShell scripts to manage Power BI settings, users, or resources need the Tenant ID to target their commands to the correct organization.
  • Troubleshooting with Microsoft: On occasion, Microsoft Support may ask for your Tenant ID to help troubleshoot account-specific issues or configurations.

Now, let’s look at the easiest ways to find it.

Method 1: Using the Power BI Service (The Simple Way)

For most day-to-day users, this is the quickest and most direct method to find a tenant ID in Power BI. You don't need any special permissions - just access to your Power BI account.

Step-by-Step Instructions:

  1. Navigate to app.powerbi.com in your web browser and sign in to your account.
  2. In the top-right corner of the navigation bar, look for the help icon, which is a question mark (?). Click on it.
  3. From the dropdown menu that appears, select "About Power BI."
  4. A dialog box will pop up, displaying details about your Power BI session. Your Tenant ID is listed right there. You can easily highlight it and copy it to your clipboard.

That's it! In a few clicks, you have what you need without ever leaving the Power BI interface.

Method 2: Using the Azure Portal (For Admins and Developers)

If you're an IT administrator, developer, or a user who also has access to your organization's Microsoft Azure account, you can find the Tenant ID there just as easily. Because the tenant is managed by Microsoft Entra ID (formerly Azure Active Directory), the ID is prominently displayed there.

Step-by-Step Instructions:

  1. Go to portal.azure.com and log in with your credentials.
  2. In the main search bar at the top of the portal, type "Microsoft Entra ID" and select it from the services list.
  3. This will take you to the main page for your organization's directory. On the Overview screen, you'll see a "Basic information" card.
  4. Your Tenant ID is clearly labeled in this section. You'll find a handy "copy to clipboard" icon right next to it.
GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Method 3: Finding Your Tenant ID Through a Special URL

This method is a bit of a power-user trick, but it's incredibly fast once you know it. It doesn't require logging into any portals visually. You can find the information by accessing a specific "well-known" endpoint URL.

Simply use the following URL format, replacing "YOUR_DOMAIN.com" with your organization's domain name (e.g., contoso.com or contoso.onmicrosoft.com).

https://login.microsoftonline.com/YOUR_DOMAIN.com/.well-known/openid-configuration

How It Works:

  1. Paste the URL into your browser, replacing the placeholder with your actual domain. For example, if your login email is dave@analyticsteam.com, you'd use analyticsteam.com.
  2. Press Enter. Your browser will display a page of plain text (specifically, a JSON document). It might look a little intimidating, but don't worry.
  3. Press CTRL + F (or Cmd + F on a Mac) to search the page's contents. Type in token_endpoint and hit search.
  4. You'll find a line that looks something like this: "token_endpoint": "https://login.microsoftonline.com/1a2b3c4d-5678-90ef-gh12-i3jklmn45op6/oauth2/v2.0/token"

That long string of characters sandwiched between login.microsoftonline.com/ and /oauth2/v2.0/token is your Tenant ID.

Method 4: Using PowerShell (For Automation and Scripting)

If you're comfortable with command-line tools and are already managing Azure or Microsoft 365 through PowerShell, this method is ideal.

Prerequisites:

You'll need to have the Azure Az PowerShell module installed. If you don't, you can install it by opening PowerShell as an administrator and running:

Install-Module -Name Az -AllowClobber -Scope AllUsers

Commands to Find the Tenant ID:

  1. Open a PowerShell window.
  2. Connect to your account using the following command. A login window will pop up prompting you for your credentials:

Connect-AzAccount

  1. Once you're successfully signed in, simply run this command:

Get-AzTenant

  1. PowerShell will return a list of all tenants your account has access to. For most people, this will just be one. The output will neatly display the Tenant ID along with your tenant's name and domain.
GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Tenant ID vs. Object ID vs. Subscription ID: Clearing up Confusion

These terms are often mixed up, but they refer to completely different things. Using our apartment building analogy:

  • Tenant ID: This is the address of the entire building. It's the unique identifier for your whole organization's presence in Microsoft Cloud.
  • Object ID: This is the keycard for a specific person or a specific room in the building. Every user, group, application, or resource inside your tenant has its own unique Object ID.
  • Subscription ID: This is for billing. Think of it as the account number for a rental agreement. An organization (tenant) can have multiple subscriptions, perhaps one for the marketing department and another for IT, to manage costs and resources separately.

So when an application asks for the "Tenant ID," it's asking for the master ID for your entire organization, not your personal user ID (Object ID) or your billing arrangement (Subscription ID).

Final Thoughts

Finding your Power BI Tenant ID is a straightforward process once you know where to look. Whether you use the simple "About Power BI" dialog, the admin-friendly Azure Portal, a clever URL, or a PowerShell command, you can find this key piece of information in under a minute.

Locating identifiers like these is often the necessary first step in setting up data pipelines and connecting a maze of different tools. We know how much time that setup and ongoing reporting grunt work can consume — it's why we created Graphed. We wanted to skip the complexity of stitching data sources together and manually building dashboards. With Graphed, you connect to sources like Google Analytics, HubSpot, and Salesforce, then simply ask for the dashboard you need in plain English. That helps you spend less time configuring and more time acting on insights.

Related Articles

How to Enable Data Analysis in Excel

Enable Excel's hidden data analysis tools with our step-by-step guide. Uncover trends, make forecasts, and turn raw numbers into actionable insights today!