Skip to content

Latest commit

 

History

History
97 lines (67 loc) · 3.26 KB

File metadata and controls

97 lines (67 loc) · 3.26 KB
title Add noncustodialDataSource
description Add noncustodialSources by posting to the noncustodialSources collection.
author mahage-msft
ms.localizationpriority medium
ms.subservice ediscovery
doc_type apiPageType
ms.date 08/01/2024

Add noncustodialDataSource

Namespace: microsoft.graph.ediscovery

[!INCLUDE beta-disclaimer]

[!INCLUDE ediscovery-deprecation]

Add noncustodialSources to a sourceCollection.

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.

[!INCLUDE permissions-table]

HTTP request

POST /compliance/ediscovery/cases/{caseId}/sourceCollections/{sourceCollectionId}/noncustodialSources/$ref

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply a JSON representation of the noncustodialDataSource object.

The following table lists the properties that are required when you create the noncustodialDataSource.

Property Type Description
@odata.id String String that defines the custodial object. See the example that follows. The @odata.id can be retrieved from the noncustodialDataSource.

Response

If successful, this method returns a 204 No Content response code and a noncustodialDataSource object in the response body.

Examples

Request

POST https://graph.microsoft.com/beta/compliance/ediscovery/cases/06d52284-ed81-49b8-904a-b863d3164731/sourceCollections/12aab1671c834213a84ba219c06f4c5a/noncustodialSources/$ref
Content-Type: application/json

{
    "@odata.id": "https://graph.microsoft.com/beta/compliance/ediscovery/cases/06d52284-ed81-49b8-904a-b863d3164731/noncustodialDataSources/39383530323537383742433232433246"
}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

HTTP/1.1 204 No Content