Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Unarchive a list of serviceUpdateMessages for the signed in user.
This API is available in the following national cloud deployments.
Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
✅ |
✅ |
✅ |
✅ |
Permissions
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.
Permission type |
Least privileged permissions |
Higher privileged permissions |
Delegated (work or school account) |
ServiceMessageViewpoint.Write |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
Not supported. |
Not supported. |
HTTP request
POST /admin/serviceAnnouncement/messages/unarchive
Request body
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 unarchive. |
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.
Example
Request
POST https://graph.microsoft.com/beta/admin/serviceAnnouncement/messages/unarchive
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.Beta.Admin.ServiceAnnouncement.Messages.Unarchive;
var requestBody = new UnarchivePostRequestBody
{
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.Unarchive.PostAsUnarchivePostResponseAsync(requestBody);
mgc-beta admin service-announcement messages unarchive post --body '{\
"messageIds": ["MC172851", "MC167983"]\
}\
'
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphadmin "github.com/microsoftgraph/msgraph-beta-sdk-go/admin"
//other-imports
)
requestBody := graphadmin.NewUnarchivePostRequestBody()
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
unarchive, err := graphClient.Admin().ServiceAnnouncement().Messages().Unarchive().PostAsUnarchivePostResponse(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.beta.admin.serviceannouncement.messages.unarchive.UnarchivePostRequestBody unarchivePostRequestBody = new com.microsoft.graph.beta.admin.serviceannouncement.messages.unarchive.UnarchivePostRequestBody();
LinkedList<String> messageIds = new LinkedList<String>();
messageIds.add("MC172851");
messageIds.add("MC167983");
unarchivePostRequestBody.setMessageIds(messageIds);
var result = graphClient.admin().serviceAnnouncement().messages().unarchive().post(unarchivePostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const _boolean = {
messageIds: ['MC172851', 'MC167983']
};
await client.api('/admin/serviceAnnouncement/messages/unarchive')
.version('beta')
.post(_boolean);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Admin\ServiceAnnouncement\Messages\Unarchive\UnarchivePostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new UnarchivePostRequestBody();
$requestBody->setMessageIds(['MC172851', 'MC167983', ]);
$result = $graphServiceClient->admin()->serviceAnnouncement()->messages()->unarchive()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Devices.ServiceAnnouncement
$params = @{
messageIds = @(
"MC172851"
"MC167983"
)
}
Invoke-MgBetaUnarchiveServiceAnnouncementMessage -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.admin.serviceannouncement.messages.unarchive.unarchive_post_request_body import UnarchivePostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = UnarchivePostRequestBody(
message_ids = [
"MC172851",
"MC167983",
],
)
result = await graph_client.admin.service_announcement.messages.unarchive.post(request_body)
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": true
}