Skip to content

Latest commit

 

History

History
119 lines (91 loc) · 4.38 KB

File metadata and controls

119 lines (91 loc) · 4.38 KB
title Update ediscoveryCase
description Update the properties of an ediscoveryCase object.
author SeunginLyu
ms.localizationpriority medium
ms.subservice ediscovery
doc_type apiPageType
ms.date 06/26/2024

Update ediscoveryCase

Namespace: microsoft.graph.security

[!INCLUDE beta-disclaimer]

Update the properties of an ediscoveryCase object.

[!INCLUDE national-cloud-support]

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] [!INCLUDE rbac-rbac-ediscovery-apis-write]

HTTP request

PATCH /security/cases/ediscoveryCases/{ediscoveryCaseId}

Request headers

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

Request body

[!INCLUDE table-intro]

In the request body, supply the values for relevant fields that should be updated. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values. For best performance, don't include existing values that haven't changed.

Property Type Description
description String The case description.
displayName String The case name.
externalId String The external case number for customer reference.

Response

If successful, this method returns a 204 NO CONTENT response code and an updated microsoft.graph.security.ediscoveryCase object in the response body.

Examples

Request

The following example shows a request.

PATCH https://graph.microsoft.com/beta/security/cases/ediscoveryCases/22aa2acd-7554-4330-9ba9-ce20014aaae4
Content-Type: application/json

{
    "displayName": "My Case 1 - Renamed",
    "description": "Updated description"
}

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

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

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

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

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

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

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


Response

The following example shows the response.

HTTP/1.1 204 No Content