ProvisioningLog.Read.All
Allows the app to read and query your provisioning log activities, without a signed-in user.
Permission Details
Read all provisioning log data
Allows the app to read and query your provisioning log activities, without a signed-in user.
091937d3-3e38-47a1-8649-b2f99d3035f1
Read provisioning log data
Allows the app to read and query your provisioning log activities, on behalf of the signed-in user.
95aec97b-cf27-4a8d-a67d-42f60b5b38ef
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
content |
base64urlNullable |
The http content that has the data |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"content": "String"
}
Relationships
Relationships metadata is not available for this permission mapping.
View resource documentationGraph 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 not available from refreshed Microsoft Learn PowerShell snippets for this permission.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsMicrosoft Graph PowerShell beta commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsCode 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.Reports.Correlations["{identityCorrelation-id}"].Identities["{correlatedIdentity-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let correlatedIdentity = await client.api('/reports/correlations/{identityCorrelationId}/identities/{correlatedIdentityId}')
.version('beta')
.get();
Connect-MgGraph -Scopes "ProvisioningLog.Read.All"
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/reports/correlations"
# 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.reports.correlations.by_identity_correlation_id('identityCorrelation-id').identities.by_correlated_identity_id('correlatedIdentity-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 Application permissions or delegated permissions and search for ProvisioningLog.Read.All
Grant Admin Consent
Application permissions always require admin consent.