Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
Update the properties of an ediscoveryReviewSet object.
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
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
In the request body, supply only the values for properties to update. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values.
The following table specifies the properties that can be updated.
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/v1.0/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