Tenant ID (directory ID)
Answer: The tenant ID is the GUID that identifies one Microsoft Entra directory and is used in authority URLs, tokens, APIs, and support evidence; it is different from a verified domain name or subscription ID.
Administrator playbook
Decide, verify, and document
Use the curated answer as a starting point, then prove the outcome against the target tenant or device.
What it means
- Tokens commonly carry the tenant in the tid claim
- A tenant can have many verified domains
- Azure subscriptions are associated with a tenant but have their own IDs
What to check next
- Confirm tenant context before running Graph or PowerShell commands
- Match the token tid claim to the target tenant
- Do not substitute the subscription ID or primary domain
Verify success
- Confirm the object type and identifier in the authoritative tenant.
- Compare the portal value with Microsoft Graph or the local device state.
- Use IDs—not display names—when proving that two references point to the same object.
Escalate when
- Two portals or APIs return conflicting identifiers for the same expected object.
- The issue crosses tenant or cloud boundaries.
- A production authorization decision depends on the object relationship.
Copyable admin briefAnswer, next checks, source, and review date
Inspect Microsoft Graph context
Get-MgContext | Select-Object ClientId,TenantId,Account,AuthType,ScopesRead-only. Useful when a term or identifier is being interpreted in the wrong tenant.
Evidence to preserve
- Format
- GUID
- Token claim
- tid
- Not the same as
- Subscription ID or domain
- Tenant ID and cloud
- Object type and object ID
- User, app, or device context
- Where the value was observed
