ServiceHealth.Read.All
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 Details
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.
79c261e0-fe76-4144-aad5-bdc68fbe4037
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.
55896846-df78-47a7-aa94-8d3d4442ca7f
Properties
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
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.serviceHealth",
"service": "String",
"status": "String",
"id": "String (identifier)"
}
Relationships
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
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
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.
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.Admin.ServiceAnnouncement.HealthOverviews["{serviceHealth-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let serviceHealth = await client.api('/admin/serviceAnnouncement/healthOverviews/Microsoft 365 suite')
.get();
Import-Module Microsoft.Graph.Devices.ServiceAnnouncement
Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId
# 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
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 ServiceHealth.Read.All
Grant Admin Consent
Application permissions always require admin consent.