Namespace: microsoft.graph.security
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.
Create a new ediscoveryNoncustodialDataSource object.
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) |
eDiscovery.Read.All |
eDiscovery.ReadWrite.All |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
eDiscovery.Read.All |
eDiscovery.ReadWrite.All |
HTTP request
POST /security/cases/ediscoveryCases/{ediscoveryCaseId}/noncustodialDataSources
Request body
In the request body, supply a JSON representation of the ediscoveryNoncustodialDataSource object.
You can specify the following properties when creating an ediscoveryNoncustodialDataSource.
For userSource, use "dataSource" : { "@odata.type" : "microsoft.graph.security.userSource", "email" : "SMTP address"}
.
For siteSource use "dataSource" : { "@odata.type" : "microsoft.graph.security.siteSource", "site@odata.bind" : "siteId" }
,
Alternatively use the webUrl directly, "dataSource": {"@odata.type": "microsoft.graph.security.siteSource","site": {"webUrl": "https://m365x809305.sharepoint.com/sites/Design-topsecret"}}
Response
If successful, this method returns a 201 Created
response code and an microsoft.graph.security.ediscoveryNoncustodialDataSource object in the response body.
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/noncustodialDataSources
Content-Type: application/json
{
"dataSource": {
"@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;
using Microsoft.Graph.Beta.Models;
var requestBody = new EdiscoveryNoncustodialDataSource
{
DataSource = new SiteSource
{
OdataType = "microsoft.graph.security.siteSource",
Site = new Site
{
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}"].NoncustodialDataSources.PostAsync(requestBody);
// 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"
graphmodelssecurity "github.com/microsoftgraph/msgraph-beta-sdk-go/models/security"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphmodelssecurity.NewEdiscoveryNoncustodialDataSource()
dataSource := graphmodelssecurity.NewSiteSource()
site := graphmodels.NewSite()
webUrl := "https://m365x809305.sharepoint.com/sites/Design-topsecret"
site.SetWebUrl(&webUrl)
dataSource.SetSite(site)
requestBody.SetDataSource(dataSource)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
noncustodialDataSources, err := graphClient.Security().Cases().EdiscoveryCases().ByEdiscoveryCaseId("ediscoveryCase-id").NoncustodialDataSources().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.models.security.EdiscoveryNoncustodialDataSource ediscoveryNoncustodialDataSource = new com.microsoft.graph.beta.models.security.EdiscoveryNoncustodialDataSource();
com.microsoft.graph.beta.models.security.SiteSource dataSource = new com.microsoft.graph.beta.models.security.SiteSource();
dataSource.setOdataType("microsoft.graph.security.siteSource");
Site site = new Site();
site.setWebUrl("https://m365x809305.sharepoint.com/sites/Design-topsecret");
dataSource.setSite(site);
ediscoveryNoncustodialDataSource.setDataSource(dataSource);
com.microsoft.graph.models.security.EdiscoveryNoncustodialDataSource result = graphClient.security().cases().ediscoveryCases().byEdiscoveryCaseId("{ediscoveryCase-id}").noncustodialDataSources().post(ediscoveryNoncustodialDataSource);
const options = {
authProvider,
};
const client = Client.init(options);
const ediscoveryNoncustodialDataSource = {
dataSource: {
'@odata.type': 'microsoft.graph.security.siteSource',
site: {
webUrl: 'https://m365x809305.sharepoint.com/sites/Design-topsecret'
}
}
};
await client.api('/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/noncustodialDataSources')
.version('beta')
.post(ediscoveryNoncustodialDataSource);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\Security\EdiscoveryNoncustodialDataSource;
use Microsoft\Graph\Beta\Generated\Models\Security\SiteSource;
use Microsoft\Graph\Beta\Generated\Models\Site;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new EdiscoveryNoncustodialDataSource();
$dataSource = new SiteSource();
$dataSource->setOdataType('microsoft.graph.security.siteSource');
$dataSourceSite = new Site();
$dataSourceSite->setWebUrl('https://m365x809305.sharepoint.com/sites/Design-topsecret');
$dataSource->setSite($dataSourceSite);
$requestBody->setDataSource($dataSource);
$result = $graphServiceClient->security()->cases()->ediscoveryCases()->byEdiscoveryCaseId('ediscoveryCase-id')->noncustodialDataSources()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Security
$params = @{
dataSource = @{
"@odata.type" = "microsoft.graph.security.siteSource"
site = @{
webUrl = "https://m365x809305.sharepoint.com/sites/Design-topsecret"
}
}
}
New-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -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.models.security.ediscovery_noncustodial_data_source import EdiscoveryNoncustodialDataSource
from msgraph_beta.generated.models.security.site_source import SiteSource
from msgraph_beta.generated.models.site import Site
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = EdiscoveryNoncustodialDataSource(
data_source = SiteSource(
odata_type = "microsoft.graph.security.siteSource",
site = Site(
web_url = "https://m365x809305.sharepoint.com/sites/Design-topsecret",
),
),
)
result = await graph_client.security.cases.ediscovery_cases.by_ediscovery_case_id('ediscoveryCase-id').noncustodial_data_sources.post(request_body)
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#security/cases/ediscoveryCases('b0073e4e-4184-41c6-9eb7-8c8cc3e2288b')/noncustodialDataSources/$entity",
"status": "active",
"holdStatus": "notApplied",
"createdDateTime": "2022-05-23T03:15:08.5354451Z",
"lastModifiedDateTime": "2022-05-23T03:15:08.5354451Z",
"releasedDateTime": "0001-01-01T00:00:00Z",
"id": "43373338343345303943344434423032",
"displayName": "Design - top secret"
}