GET https://graph.microsoft.com/v1.0/admin/serviceAnnouncement/messages/MC172851
// 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.Messages["{serviceUpdateMessage-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
messages, err := graphClient.Admin().ServiceAnnouncement().Messages().ByServiceUpdateMessageId("serviceUpdateMessage-id").Get(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ServiceUpdateMessage result = graphClient.admin().serviceAnnouncement().messages().byServiceUpdateMessageId("{serviceUpdateMessage-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.messages.by_service_update_message_id('serviceUpdateMessage-id').get()
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#admin/serviceAnnouncement/messages/$entity",
"startDateTime": "2019-02-01T18:51:00Z",
"endDateTime": "2019-06-01T08:00:00Z",
"lastModifiedDateTime": "2021-01-08T01:10:06.843Z",
"title": "(Updated) New feature: Changes to PowerPoint and Word to open files faster",
"id": "MC172851",
"category": "StayInformed",
"severity": "Normal",
"tags": [
"Updated message"
],
"isMajorChange": true,
"actionRequiredByDateTime": null,
"services": [
"SharePoint Online",
"OneDrive for Business"
],
"details": [
{
"name": "ExternalLink",
"value": "https://support.office.com/article/office-document-cache-settings-4b497318-ae4f-4a99-be42-b242b2e8b692"
}
],
"body": {
"contentType": "Html",
"content": "Updated January 07, 2021: Based on learnings from our early rings, we have made the decision to make additional changes to the code before we proceed with the rollout. We will update the Message center post once we re-start the rollout. Thank you for your patience........"
},
"viewPoint": null
}