| 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 |
Namespace: microsoft.graph.security
[!INCLUDE beta-disclaimer]
Update the properties of an ediscoveryReviewSet object.
[!INCLUDE national-cloud-support]
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]
PATCH /security/cases/ediscoveryCases/{ediscoverycaseId}/reviewSets/{reviewSetId}| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json. Required. |
[!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. |
If successful, this method returns a 204 No Content response code.
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"
}The following example shows the response.
HTTP/1.1 204 No Content