Skip to content

Latest commit

 

History

History
91 lines (66 loc) · 2.68 KB

File metadata and controls

91 lines (66 loc) · 2.68 KB
title Update ediscoveryReviewSet
description Update the properties of an ediscoveryReviewSet object.
author manjarisenthil
ms.localizationpriority medium
ms.subservice ediscovery
doc_type apiPageType
ms.date 05/25/2025

Update ediscoveryReviewSet

Namespace: microsoft.graph.security

[!INCLUDE beta-disclaimer]

Update the properties of an ediscoveryReviewSet 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-ediscovery-write]

HTTP request

PATCH /security/cases/ediscoveryCases/{ediscoverycaseId}/reviewSets/{reviewSetId}

Request headers

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

Request body

[!INCLUDE table-intro]

Property Type Description
description String The description of the review set. Optional.
displayName String The name of the review set. The name is unique with a maximum limit of 64 characters. Optional.

Response

If successful, this method returns a 204 No Content response code.

Examples

Request

The following example shows a request that updates the review set name to reviewset01 and the description to reviewset description.

PATCH https://graph.microsoft.com/beta/security/cases/ff8b82a4-071c-43c7-b0f4-a2708a8736c0/reviewSets/a5658335-7242-4550-ad22-e57b443f7442
Content-Type: application/json

{
  "displayName": "reviewset01",
  "description": "reviewset description"
}

Response

The following example shows the response.

HTTP/1.1 204 No Content