ESC
Type to search...

ServiceHealth.Read.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read All Resources

Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.

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

Permission Details

Application Permission

Read service health

Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.

Delegated Permission Admin consent required

Read service health

Allows the app to read your tenant's service health information on behalf of the signed-in user. Health information may include service issues or service health overviews.

Properties

Microsoft Graph v1.0 exact-category-docs

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

Property Type Description
id String The service ID.
service String The service name. Use the list healthOverviews operation to get exact string names for services subscribed by the tenant.
status serviceHealthStatus Show the overall service health status. The possible values are: serviceOperational, investigating, restoringService, verifyingService, serviceRestored, postIncidentReviewPublished, serviceDegradation, serviceInterruption, extendedRecovery, falsePositive, investigationSuspended, resolved, mitigatedExternal, mitigated, resolvedExternal, confirmed, reported, unknownFutureValue. For more information, see serviceHealthStatus values.
issues serviceHealthIssue collection A collection of issues that happened on the service, with detailed information for each issue.

JSON Representation

Microsoft Graph v1.0 exact-category-docs

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

JSON representation
{
  "@odata.type": "#microsoft.graph.serviceHealth",
  "service": "String",
  "status": "String",
  "id": "String (identifier)"
}

Relationships

Microsoft Graph v1.0 exact-category-docs

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

Relationship Type Description
issues serviceHealthIssue collection A collection of issues that happened on the service, with detailed information for each issue.
status serviceHealthStatus Related status data exposed by this resource.

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 /admin/serviceAnnouncement/healthOverviews
GET /admin/serviceAnnouncement/healthOverviews/{ServiceName}
GET /admin/serviceAnnouncement/issues
GET /admin/serviceAnnouncement/issues/{serviceHealthIssueId}
GET /admin/serviceAnnouncement/issues/{serviceHealthIssueId}/incidentReport
Exact Microsoft Learn match

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

Methods
GET /admin/serviceAnnouncement/healthOverviews
GET /admin/serviceAnnouncement/healthOverviews/{ServiceName}
GET /admin/serviceAnnouncement/issues
GET /admin/serviceAnnouncement/issues/{serviceHealthIssueId}
GET /admin/serviceAnnouncement/issues/{serviceHealthIssueId}/incidentReport
Exact Microsoft Learn PowerShell match

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

Commands
Get-MgServiceAnnouncementHealthOverview /admin/serviceAnnouncement/healthOverviews
List healthOverviews
Get-MgServiceAnnouncementHealthOverview /admin/serviceAnnouncement/healthOverviews/{ServiceName}
Get serviceHealth
Get-MgServiceAnnouncementIssue /admin/serviceAnnouncement/issues
List issues
Get-MgServiceAnnouncementIssue /admin/serviceAnnouncement/issues/{serviceHealthIssueId}
Get serviceHealthIssue
Invoke-MgReportServiceAnnouncementIssueIncident /admin/serviceAnnouncement/issues/{serviceHealthIssueId}/incidentReport
serviceHealthIssue: incidentReport
Exact Microsoft Learn PowerShell match

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

Commands
Get-MgBetaServiceAnnouncementHealthOverview /admin/serviceAnnouncement/healthOverviews
List healthOverviews
Get-MgBetaServiceAnnouncementHealthOverview /admin/serviceAnnouncement/healthOverviews/{ServiceName}
Get serviceHealth
Get-MgBetaServiceAnnouncementIssue /admin/serviceAnnouncement/issues
List issues
Get-MgBetaServiceAnnouncementIssue /admin/serviceAnnouncement/issues/{serviceHealthIssueId}
Get serviceHealthIssue
Invoke-MgBetaReportServiceAnnouncementIssueIncident /admin/serviceAnnouncement/issues/{serviceHealthIssueId}/incidentReport
serviceHealthIssue: incidentReport

Code Examples

C# / .NET SDK
Get serviceHealth
// 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.Admin.ServiceAnnouncement.HealthOverviews["{serviceHealth-id}"].GetAsync();
JavaScript
Get serviceHealth
const options = {
	authProvider,
};

const client = Client.init(options);

let serviceHealth = await client.api('/admin/serviceAnnouncement/healthOverviews/Microsoft 365 suite')
	.get();
PowerShell
Get serviceHealth
Import-Module Microsoft.Graph.Devices.ServiceAnnouncement

Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId
Python
Get serviceHealth
# 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.admin.service_announcement.health_overviews.by_service_health_id('serviceHealth-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 ServiceHealth.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.