In the request body, supply the values for relevant fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance, don't include existing values that haven't changed. Only the following properties are supported for update.
Property
Type
Description
displayName
String
Display name of the agreement.
isViewingBeforeAcceptanceRequired
Boolean
Whether the user has to expand and view the agreement before accepting.
Response
If successful, this method returns a 204 No Content response code.
PATCH https://graph.microsoft.com/v1.0/identityGovernance/termsOfUse/agreements/0ec9f6a6-159d-4dd8-a563-1f0b5935e80b
Content-type: application/json
{
"displayName": "All Contoso volunteers - Terms of use",
"isViewingBeforeAcceptanceRequired": true
}
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var requestBody = new Agreement
{
DisplayName = "All Contoso volunteers - Terms of use",
IsViewingBeforeAcceptanceRequired = true,
};
var result = await graphClient.IdentityGovernance.TermsOfUse.Agreements["{agreement-id}"].PatchAsync(requestBody);
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc identity-governance terms-of-use agreements patch --agreement-id {agreement-id} --body '{\
"displayName": "All Contoso volunteers - Terms of use",\
"isViewingBeforeAcceptanceRequired": true\
}\
'
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new Agreement();
$requestBody->setDisplayName('All Contoso volunteers - Terms of use');
$requestBody->setIsViewingBeforeAcceptanceRequired(true);
$result = $graphServiceClient->identityGovernance()->termsOfUse()->agreements()->byAgreementId('agreement-id')->patch($requestBody)->wait();
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(request_adapter)
request_body = Agreement(
display_name = "All Contoso volunteers - Terms of use",
is_viewing_before_acceptance_required = True,
)
result = await graph_client.identity_governance.term_of_use.agreements.by_agreement_id('agreement-id').patch(body = request_body)