Hey
While the Office 365 Service Communication API doesn't provide tenant-specific statuses directly, there are alternatives using Microsoft Graph API:
- Use the
/admin/serviceAnnouncement/healthOverviews
endpoint to get service health overviews for your tenant. - The
Get-MgServiceAnnouncementHealthOverview
PowerShell cmdlet can retrieve this data. - Implement custom filtering and analysis of the general service data to focus on issues likely affecting your tenant.
- Combine API data with tenant-specific monitoring for a more accurate picture.
- The API requires the
ServiceHealth.Read.All
permission More:
https://learn.microsoft.com/en-us/graph/api/resources/service-communications-api-overview?view=graph-rest-1.0 https://learn.microsoft.com/en-us/graph/api/serviceannouncement-list-healthoverviews?view=graph-rest-1.0&tabs=http https://office365itpros.com/2024/02/07/service-health-data-api/ https://learn.microsoft.com/en-us/graph/api/servicehealth-get?view=graph-rest-1.0&tabs=http