Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
In the request body, supply a JSON representation of the parameters.
The following table shows the parameters that can be used with this action.
Parameter
Type
Description
messageIds
String collection
List of message IDs to mark as read.
Response
If successful, this action returns a 200 OK response code and a Boolean value true in the response body. Otherwise, will return false in the response body.
POST https://graph.microsoft.com/v1.0/admin/serviceAnnouncement/messages/markRead
Content-Type: application/json
{
"messageIds": ["MC172851", "MC167983"]
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Admin.ServiceAnnouncement.Messages.MarkRead;
var requestBody = new MarkReadPostRequestBody
{
MessageIds = new List<string>
{
"MC172851",
"MC167983",
},
};
// 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.MarkRead.PostAsMarkReadPostResponseAsync(requestBody);
// 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"
graphadmin "github.com/microsoftgraph/msgraph-sdk-go/admin"
//other-imports
)
requestBody := graphadmin.NewMarkReadPostRequestBody()
messageIds := []string {
"MC172851",
"MC167983",
}
requestBody.SetMessageIds(messageIds)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
markRead, err := graphClient.Admin().ServiceAnnouncement().Messages().MarkRead().PostAsMarkReadPostResponse(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.admin.serviceannouncement.messages.markread.MarkReadPostRequestBody markReadPostRequestBody = new com.microsoft.graph.admin.serviceannouncement.messages.markread.MarkReadPostRequestBody();
LinkedList<String> messageIds = new LinkedList<String>();
messageIds.add("MC172851");
messageIds.add("MC167983");
markReadPostRequestBody.setMessageIds(messageIds);
var result = graphClient.admin().serviceAnnouncement().messages().markRead().post(markReadPostRequestBody);
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Admin\ServiceAnnouncement\Messages\MarkRead\MarkReadPostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new MarkReadPostRequestBody();
$requestBody->setMessageIds(['MC172851', 'MC167983', ]);
$result = $graphServiceClient->admin()->serviceAnnouncement()->messages()->markRead()->post($requestBody)->wait();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.admin.serviceannouncement.messages.mark_read.mark_read_post_request_body import MarkReadPostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = MarkReadPostRequestBody(
message_ids = [
"MC172851",
"MC167983",
],
)
result = await graph_client.admin.service_announcement.messages.mark_read.post(request_body)