Skip to content

Latest commit

 

History

History
131 lines (100 loc) · 4.78 KB

subjectrightsrequest-update.md

File metadata and controls

131 lines (100 loc) · 4.78 KB
title description author ms.localizationpriority ms.prod doc_type
Update subjectRightsRequest
Update the properties of a subjectRightsRequest object.
skadam-msft
medium
compliance
apiPageType

Update subjectRightsRequest

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Update the properties of a subjectRightsRequest 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]

HTTP request

[!INCLUDE subject-rights-request-privacy-deprecate]

PATCH /security/subjectRightsRequests/{subjectRightsRequestId}
PATCH /privacy/subjectRightsRequests/{subjectRightsRequestId}

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 subjectRightsRequest object.

The following table shows the properties that are required when you update the subjectRightsRequest.

Property Type Description
description String Updated description for the request.
displayName String Updated name of the request.
internalDueDateTime DateTimeOffset Updated internal due date for the request.

Response

If successful, this method returns a 200 OK response code and an updated subjectRightsRequest object in the response body.

Examples

Request

PATCH https://graph.microsoft.com/beta/privacy/subjectRightsRequests/{subjectRightsRequestId}
Content-Type: application/json

{
    "@odata.type": "#microsoft.graph.subjectRightsRequest",
    "internalDueDateTime": "2021-08-30T00:00:00Z"
}

[!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]

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


Response

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "displayName": "Updated case name for Diego Siciliani",
    "description": "This is an updated case",
    "internalDueDateTime": "2022-07-20T22:42:28Z"
}