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.
If this request header is included and the eTag provided does not match the current eTag on the item, a 412 Precondition Failed response is returned and the item will not be updated.
Request body
In the request body, supply a JSON representation of a fieldValueSet specifying the fields to update.
Response
If successful, this method returns a 200 Ok response code and a fieldValueSet in the response body for the updated list item.
Example
The following example updates the Color and Quantity fields of the list item with new values. All other values on the listItem are left alone.
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new FieldValueSet
{
AdditionalData = new Dictionary<string, object>
{
{
"Color" , "Fuchsia"
},
{
"Quantity" , 934
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Sites["{site-id}"].Lists["{list-id}"].Items["{listItem-id}"].Fields.PatchAsync(requestBody);
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new FieldValueSet();
$additionalData = [
'Color' => 'Fuchsia',
'Quantity' => 934,
];
$requestBody->setAdditionalData($additionalData);
$result = $graphServiceClient->sites()->bySiteId('site-id')->lists()->byListId('list-id')->items()->byListItemId('listItem-id')->fields()->patch($requestBody)->wait();
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(credentials, scopes)
request_body = FieldValueSet(
additional_data = {
"color" : "Fuchsia",
"quantity" : 934,
}
)
result = await graph_client.sites.by_site_id('site-id').lists.by_list_id('list-id').items.by_list_item_id('listItem-id').fields.patch(request_body)