How to find your Microsoft Entra tenant ID

Azure subscriptions have a trust relationship with Microsoft Entra ID. Microsoft Entra ID is trusted to authenticate the subscription's users, services, and devices. Each subscription has a tenant ID associated with it, and there are a few ways you can find the tenant ID for your subscription.

Find tenant ID through the Microsoft Entra admin center

  1. Sign in to the Microsoft Entra admin center as at least a Global Reader.

  2. Browse to Identity > Overview > Properties.

    Microsoft Entra ID - Identity Properties overview

  3. Scroll down to the Tenant ID section and you can find your tenant ID in the box.

Find tenant ID through the Azure portal

  1. Sign in to the Azure portal.

  2. Browse to Microsoft Entra ID > Properties.

  3. Scroll down to the Tenant ID section and you can find your tenant ID in the box.

    Microsoft Entra ID - Properties - Tenant ID - Tenant ID field

Find tenant ID with PowerShell

To find the tenant ID with Azure PowerShell, use the cmdlet Get-AzTenant.

Connect-AzAccount
Get-AzTenant

For more information, see the Get-AzTenant cmdlet reference.

Find tenant ID with CLI

The Azure CLI or Microsoft 365 CLI can be used to find the tenant ID.

For the Azure CLI, use one of the commands az login, az account list, or az account tenant list. All of command's included below return the tenantId property for each of your subscriptions.

az login
az account list
az account tenant list

For more information, see az login command reference, az account command reference, or az account tenant command reference.

For Microsoft 365 CLI, use the cmdlet tenant id as shown in the following example:

m365 tenant id get

Next steps