ESC
Type to search...

Synchronization.Read.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read All Resources

Allows the application to read Azure AD synchronization information, without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

Read all Azure AD synchronization data.

Allows the application to read Azure AD synchronization information, without a signed-in user.

Delegated Permission Admin consent required

Read all Azure AD synchronization data

Allows the app to read Azure AD synchronization information, on behalf of the signed-in user.

Properties

Microsoft Graph v1.0 exact-category

Properties is shown from stable Microsoft Graph v1.0 metadata.

Property Type Description
id string The unique identifier for an entity. Read-only.
jobs synchronizationJob collection Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.
secrets synchronizationSecretKeyStringValuePair collection Represents a collection of credentials to access provisioned cloud applications.
templates synchronizationTemplate collection Preconfigured synchronization settings for a particular application.

JSON Representation

Microsoft Graph v1.0 exact-category

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "id": "String",
  "jobs": [
    {
      "@type": "synchronizationJob",
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "secrets": [
    {
      "@type": "synchronizationSecretKeyStringValuePair",
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "templates": [
    {
      "@type": "synchronizationTemplate",
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ]
}

Relationships

Microsoft Graph v1.0 exact-category

Relationships is shown from stable Microsoft Graph v1.0 metadata.

Relationship Type Description
jobs synchronizationJob collection Synchronization jobs configured for the resource.
templates synchronizationTemplate collection Synchronization templates available for the resource.
secrets synchronizationSecretKeyStringValuePair collection Represents a collection of credentials to access provisioned cloud applications.

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /applications/{id}/synchronization/templates
GET /applications/{id}/synchronization/templates/{templateId}
GET /applications/{id}/synchronization/templates/{templateId}/schema
GET /servicePrincipals/{id}/synchronization/jobs/
GET /servicePrincipals/{id}/synchronization/jobs/{jobId}/
GET /servicePrincipals/{id}/synchronization/jobs/{jobId}/schema
GET /servicePrincipals/{id}/synchronization/templates
GET /servicePrincipals/{id}/synchronization/templates/{templateId}
GET /servicePrincipals/{id}/synchronization/templates/{templateId}/schema
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /applications/{id}/synchronization/templates
GET /applications/{id}/synchronization/templates/{templateId}
GET /applications/{id}/synchronization/templates/{templateId}/schema
GET /servicePrincipals/{id}/synchronization/jobs/
GET /servicePrincipals/{id}/synchronization/jobs/{jobId}/
GET /servicePrincipals/{id}/synchronization/jobs/{jobId}/schema
GET /servicePrincipals/{id}/synchronization/templates
GET /servicePrincipals/{id}/synchronization/templates/{templateId}
GET /servicePrincipals/{id}/synchronization/templates/{templateId}/schema
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgServicePrincipalSynchronizationJob /servicePrincipals/{id}/synchronization/jobs/
List synchronization jobs
Get-MgServicePrincipalSynchronizationJob /servicePrincipals/{id}/synchronization/jobs/{jobId}/
Get synchronizationJob
Get-MgServicePrincipalSynchronizationJobSchema /servicePrincipals/{id}/synchronization/jobs/{jobId}/schema
Get synchronizationSchema
Get-MgServicePrincipalSynchronizationTemplate /servicePrincipals/{id}/synchronization/templates
List existing synchronization templates
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaServicePrincipalSynchronizationJob /servicePrincipals/{id}/synchronization/jobs/
List synchronization jobs
Get-MgBetaServicePrincipalSynchronizationJob /servicePrincipals/{id}/synchronization/jobs/{jobId}/
Get synchronizationJob
Get-MgBetaServicePrincipalSynchronizationJobSchema /servicePrincipals/{id}/synchronization/jobs/{jobId}/schema
Get synchronizationSchema
Get-MgBetaServicePrincipalSynchronizationTemplate /servicePrincipals/{id}/synchronization/templates
List existing synchronization templates

Code Examples

C# / .NET SDK
Get synchronizationJob
// 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.ServicePrincipals["{servicePrincipal-id}"].Synchronization.Jobs["{synchronizationJob-id}"].GetAsync();
JavaScript
Get synchronizationJob
const options = {
	authProvider,
};

const client = Client.init(options);

let synchronizationJob = await client.api('/servicePrincipals/{id}/synchronization/jobs/{jobId}/')
	.get();
PowerShell
Get synchronizationJob
Import-Module Microsoft.Graph.Applications

Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId
Python
Get synchronizationJob
# 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.service_principals.by_service_principal_id('servicePrincipal-id').synchronization.jobs.by_synchronization_job_id('synchronizationJob-id').get()

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions or delegated permissions and search for Synchronization.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.