ManagedTenants.Read.All
Allows the app to read all managed tenant information on behalf of the signed-in user.
Permission Details
Read all managed tenant information
Allows the app to read all managed tenant information on behalf of the signed-in user.
dc34164e-6c4a-41a0-be89-3ae2fbad7cd3
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
delegatedAdminCustomers |
delegatedAdminCustomer collection |
The customer who has a delegated admin relationship with a Microsoft partner. |
delegatedAdminRelationships |
delegatedAdminRelationship collection |
The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. |
multiTenantOrganization |
object |
Defines an organization with more than one instance of Microsoft Entra ID. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.tenantRelationship"
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
delegatedAdminCustomers |
delegatedAdminCustomer collection |
The customer who has a delegated admin relationship with a Microsoft partner. |
delegatedAdminRelationships |
delegatedAdminRelationship collection |
The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. |
multiTenantOrganization |
multiTenantOrganization |
Defines an organization with more than one instance of Microsoft Entra ID. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
No API methods available for this version.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsMicrosoft 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.ManagedTenants.AuditEvents["{auditEvent-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let auditEvent = await client.api('/tenantRelationships/managedTenants/auditEvents/{auditEventId}')
.version('beta')
.get();
Import-Module Microsoft.Graph.Beta.ManagedTenants
Get-MgBetaTenantRelationshipManagedTenantAuditEvent -AuditEventId $auditEventId
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta 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.managed_tenants.audit_events.by_audit_event_id('auditEvent-id').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 Delegated permissions and search for ManagedTenants.Read.All
Grant Admin Consent
This delegated permission requires admin consent.