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.
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)
eDiscovery.Read.All
eDiscovery.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Not supported.
Application
Not supported.
Not supported.
HTTP request
POST /security/cases/ediscoveryCases/{ediscoveryCaseId}/legalHolds
Request headers
Name
Description
Authorization
Bearer {token}. Required.
Content-Type
application/json. Required.
Request body
In the request body, supply a JSON representation of the ediscoveryHoldPolicy object.
You can specify the following properties when you create an ediscoveryHoldPolicy.
Property
Type
Description
displayName
String
The display name of the legal hold policy. Required.
description
String
The description of the legal hold policy. Optional.
POST https://graph.microsoft.com/beta/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/legalHolds
Content-Type: application/json
{
"displayName": "My legalHold with sources",
"description": "Created from Graph API",
"userSources@odata.bind": [
{
"@odata.type": "microsoft.graph.security.userSource",
"email": "SalesTeam@M365x809305.OnMicrosoft.com"
}
],
"siteSources@odata.bind": [
{
"@odata.type": "microsoft.graph.security.siteSource",
"site": {
"webUrl": "https://m365x809305.sharepoint.com/sites/Design-topsecret"
}
}
]
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.Security;
var requestBody = new EdiscoveryHoldPolicy
{
DisplayName = "My legalHold with sources",
Description = "Created from Graph API",
AdditionalData = new Dictionary<string, object>
{
{
"userSources@odata.bind" , new List<object>
{
new
{
OdataType = "microsoft.graph.security.userSource",
Email = "SalesTeam@M365x809305.OnMicrosoft.com",
},
}
},
{
"siteSources@odata.bind" , new List<object>
{
new
{
OdataType = "microsoft.graph.security.siteSource",
Site = new
{
WebUrl = "https://m365x809305.sharepoint.com/sites/Design-topsecret",
},
},
}
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Security.Cases.EdiscoveryCases["{ediscoveryCase-id}"].LegalHolds.PostAsync(requestBody);
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc-beta security cases ediscovery-cases legal-holds create --ediscovery-case-id {ediscoveryCase-id} --body '{\
"displayName": "My legalHold with sources",\
"description": "Created from Graph API",\
"userSources@odata.bind": [\
{\
"@odata.type": "microsoft.graph.security.userSource",\
"email": "SalesTeam@M365x809305.OnMicrosoft.com"\
}\
],\
"siteSources@odata.bind": [\
{\
"@odata.type": "microsoft.graph.security.siteSource",\
"site": {\
"webUrl": "https://m365x809305.sharepoint.com/sites/Design-topsecret"\
}\
}\
]\
}\
'
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
EdiscoveryHoldPolicy ediscoveryHoldPolicy = new EdiscoveryHoldPolicy();
ediscoveryHoldPolicy.displayName = "My legalHold with sources";
ediscoveryHoldPolicy.description = "Created from Graph API";
ediscoveryHoldPolicy.additionalDataManager().put("userSources@odata.bind", new JsonPrimitive("[ { \"@odata.type\": \"microsoft.graph.security.userSource\", \"email\": \"SalesTeam@M365x809305.OnMicrosoft.com\" }]"));
ediscoveryHoldPolicy.additionalDataManager().put("siteSources@odata.bind", new JsonPrimitive("[ { \"@odata.type\": \"microsoft.graph.security.siteSource\", \"site\": { \"webUrl\": \"https://m365x809305.sharepoint.com/sites/Design-topsecret\" } }]"));
graphClient.security().cases().ediscoveryCases("b0073e4e-4184-41c6-9eb7-8c8cc3e2288b").legalHolds()
.buildRequest()
.post(ediscoveryHoldPolicy);
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new EdiscoveryHoldPolicy();
$requestBody->setDisplayName('My legalHold with sources');
$requestBody->setDescription('Created from Graph API');
$additionalData = [
'userSources@odata.bind' => [
[
'@odata.type' => 'microsoft.graph.security.userSource',
'email' => 'SalesTeam@M365x809305.OnMicrosoft.com',
],
],
'siteSources@odata.bind' => [
[
'@odata.type' => 'microsoft.graph.security.siteSource',
'site' => [
'webUrl' => 'https://m365x809305.sharepoint.com/sites/Design-topsecret',
],
],
],
];
$requestBody->setAdditionalData($additionalData);
$result = $graphServiceClient->security()->cases()->ediscoveryCases()->byEdiscoveryCaseId('ediscoveryCase-id')->legalHolds()->post($requestBody)->wait();
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(credentials, scopes)
request_body = EdiscoveryHoldPolicy(
display_name = "My legalHold with sources",
description = "Created from Graph API",
additional_data = {
"user_sources@odata_bind" : [
{
"@odata_type" : "microsoft.graph.security.userSource",
"email" : "SalesTeam@M365x809305.OnMicrosoft.com",
},
],
"site_sources@odata_bind" : [
{
"@odata_type" : "microsoft.graph.security.siteSource",
"site" : {
"web_url" : "https://m365x809305.sharepoint.com/sites/Design-topsecret",
},
},
],
}
)
result = await graph_client.security.cases.ediscovery_cases.by_ediscovery_case_id('ediscoveryCase-id').legal_holds.post(request_body)
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.