GET https://graph.microsoft.com/v1.0/admin/serviceAnnouncement/issues/MO226784
// 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.Issues["{serviceHealthIssue-id}"].GetAsync();
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
issues, err := graphClient.Admin().ServiceAnnouncement().Issues().ByServiceHealthIssueId("serviceHealthIssue-id").Get(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ServiceHealthIssue result = graphClient.admin().serviceAnnouncement().issues().byServiceHealthIssueId("{serviceHealthIssue-id}").get();
# 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.issues.by_service_health_issue_id('serviceHealthIssue-id').get()
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#admin/serviceAnnouncement/issues/$entity",
"startDateTime": "2020-11-14T08:15:00Z",
"endDateTime": "2020-11-14T09:45:00Z",
"lastModifiedDateTime": "2020-11-14T11:06:53.353Z",
"title": "Intermittently unable to access some Microsoft 365 services",
"id": "MO226784",
"impactDescription": "Users may have been intermittently unable to access some Microsoft 365 services.",
"classification": "Advisory",
"origin": "Microsoft",
"status": "ServiceRestored",
"service": "Microsoft 365 suite",
"feature": "Access",
"featureGroup": "Portal",
"isResolved": true,
"details": [],
"posts": [
{
"createdDateTime": "2020-11-12T07:07:38.97Z",
"postType": "Regular",
"description": {
"contentType": "Html",
"content": "Title: Intermittently unable to invite partners to meetings using some Microsoft 365 services\n\nUser Impact: Users may have been intermittently unable to invite partners to meetings using some Microsoft 365 services."
}
}
]
}