MultiTenantOrganization.Read.All
Allows the app to read all multi-tenant organization details and tenants, without a signed-in user.
In short
MultiTenantOrganization.Read.All is available as both an application permission and a delegated permission in the Microsoft Graph API, grouped under the MultiTenantOrganization category. Allows the app to read all multi-tenant organization details and tenants, without a signed-in user. It grants read-only access to resources. Application permissions always require admin consent.
Permission Details
Read all multi-tenant organization details and tenants
Allows the app to read all multi-tenant organization details and tenants, without a signed-in user.
4f994bc0-31bb-44bb-b480-7a7c1be8c02e
Read multi-tenant organization details and tenants
Allows the app to read multi-tenant organization details and tenants on behalf of the signed-in user.
526aa72a-5878-49fe-bf4e-357973af9b06
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
createdDateTime |
DateTimeOffsetNullable |
Date when multitenant organization was created. Read-only. |
description |
StringNullable |
Description of the multitenant organization. |
displayName |
StringNullable |
Display name of the multitenant organization. |
id |
String |
Tenant-specific object ID for the multitenant organization object. It is automatically generated when a multitenant organization object is created and stored in the local tenant. This ID is tenant-specific and doesn't match the object IDs of the same multitenant organization in other tenants. Read-only. Inherited from entity. |
state |
multiTenantOrganizationState |
State of the multitenant organization. The possible values are: active, inactive, unknownFutureValue. active indicates the multitenant organization is created. inactive indicates the multitenant organization isn't created. Read-only. |
joinRequest |
object |
Defines the status of a tenant joining a multitenant organization. |
tenants |
multiTenantOrganizationMember collection |
Defines tenants added to a multitenant organization. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.multiTenantOrganization",
"id": "String (identifier)",
"createdDateTime": "String (timestamp)",
"displayName": "String",
"description": "String",
"state": "String"
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
joinRequest |
multiTenantOrganizationJoinRequestRecord |
Defines the status of a tenant joining a multitenant organization. |
tenants |
multiTenantOrganizationMember collection |
Defines tenants added to a multitenant organization. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/tenantRelationships/multiTenantOrganization
|
GET
/tenantRelationships/multiTenantOrganization/joinRequest
|
GET
/tenantRelationships/multiTenantOrganization/tenants
|
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/tenantRelationships/multiTenantOrganization
|
GET
/tenantRelationships/multiTenantOrganization/joinRequest
|
GET
/tenantRelationships/multiTenantOrganization/tenants
|
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.TenantRelationships.MultiTenantOrganization.GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let multiTenantOrganization = await client.api('/tenantRelationships/multiTenantOrganization')
.get();
Import-Module Microsoft.Graph.Identity.SignIns
Get-MgTenantRelationshipMultiTenantOrganization
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.tenant_relationships.multi_tenant_organization.get()
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions or delegated permissions and search for MultiTenantOrganization.Read.All
Grant Admin Consent
Application permissions always require admin consent.
Frequently asked questions
What is the MultiTenantOrganization.Read.All Microsoft Graph permission?
MultiTenantOrganization.Read.All is available as both an application permission and a delegated permission in the Microsoft Graph API, grouped under the MultiTenantOrganization category. Allows the app to read all multi-tenant organization details and tenants, without a signed-in user. It grants read-only access to resources. Application permissions always require admin consent. It is mapped to the Microsoft Graph multitenantorganization resource type. 6 documented Microsoft Graph REST methods require it. 6 Microsoft Graph PowerShell commands are documented for it.
Is MultiTenantOrganization.Read.All an application or a delegated permission?
MultiTenantOrganization.Read.All is available as both an application permission (app-only access, no signed-in user) and a delegated permission (access on behalf of a signed-in user).
Does MultiTenantOrganization.Read.All require admin consent?
Application permissions always require admin consent.
What is the permission ID (GUID) for MultiTenantOrganization.Read.All?
For MultiTenantOrganization.Read.All, the application (app role) ID is 4f994bc0-31bb-44bb-b480-7a7c1be8c02e, and the delegated (OAuth2 scope) ID is 526aa72a-5878-49fe-bf4e-357973af9b06. These are the real Microsoft Graph identifiers and can be used directly in an app registration manifest.