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.
Enable the Microsoft 365 Backup Storage service for a tenant.
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) |
BackupRestore-Control.ReadWrite.All |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
BackupRestore-Control.ReadWrite.All |
Not available. |
HTTP request
POST /solutions/backupRestore/enable
Request body
In the request body, supply a JSON representation of the following parameter.
Parameter |
Type |
Description |
appOwnerTenantId |
String |
The ID of the owning tenant. The owning tenant contains the billing profile. |
Response
If successful, this action returns a 200 OK
response code and a serviceStatus object in the response body.
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/solutions/backupRestore/enable
{
"appOwnerTenantId": "23014d8c-71fe-4d00-a01a-31850bc5b42a"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Solutions.BackupRestore.Enable;
var requestBody = new EnablePostRequestBody
{
AppOwnerTenantId = "23014d8c-71fe-4d00-a01a-31850bc5b42a",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Solutions.BackupRestore.Enable.PostAsync(requestBody);
mgc-beta solutions backup-restore enable post
// 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"
graphsolutions "github.com/microsoftgraph/msgraph-beta-sdk-go/solutions"
//other-imports
)
requestBody := graphsolutions.NewEnablePostRequestBody()
appOwnerTenantId := "23014d8c-71fe-4d00-a01a-31850bc5b42a"
requestBody.SetAppOwnerTenantId(&appOwnerTenantId)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
enable, err := graphClient.Solutions().BackupRestore().Enable().Post(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.solutions.backuprestore.enable.EnablePostRequestBody enablePostRequestBody = new com.microsoft.graph.beta.solutions.backuprestore.enable.EnablePostRequestBody();
enablePostRequestBody.setAppOwnerTenantId("23014d8c-71fe-4d00-a01a-31850bc5b42a");
var result = graphClient.solutions().backupRestore().enable().post(enablePostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const serviceStatus = {
appOwnerTenantId: '23014d8c-71fe-4d00-a01a-31850bc5b42a'
};
await client.api('/solutions/backupRestore/enable')
.version('beta')
.post(serviceStatus);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Solutions\BackupRestore\Enable\EnablePostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new EnablePostRequestBody();
$requestBody->setAppOwnerTenantId('23014d8c-71fe-4d00-a01a-31850bc5b42a');
$result = $graphServiceClient->solutions()->backupRestore()->enable()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.BackupRestore
$params = @{
appOwnerTenantId = "23014d8c-71fe-4d00-a01a-31850bc5b42a"
}
Enable-MgBetaSolutionBackupRestore -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.solutions.backuprestore.enable.enable_post_request_body import EnablePostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = EnablePostRequestBody(
app_owner_tenant_id = "23014d8c-71fe-4d00-a01a-31850bc5b42a",
)
result = await graph_client.solutions.backup_restore.enable.post(request_body)
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
{
"@odata.type": "#microsoft.graph.serviceStatus",
"id":"b3177c20-8d60-4a41-8a6f-1715ac41297f",
"status":"enabled",
"serviceConsumer":"thirdParty",
"lastModifiedBy":{
"application":{
"id":"1fec8e78-bce4-4aaf-ab1b-5451cc387264"
},
"user":{
"id":"845457dc-4bb2-4815-bef3-8628ebd1952e"
}
},
"lastModifiedDateTime":"2023-06-19T12:01:03.45Z"
}