Hi @Sumanth Krishna, Kondapalli
You can update single value 'personOrGroup' fields, by combining the field name with Lookup-Id and passing the Lookup-Id as the value.
- Execute the below request. It will give you some SharePoint lists. Find the list with name “Users”
GET https://graph.microsoft.com/v1.0/sites/{site-id}/lists - Query the list items of that list. The request will look like
GET https://graph.microsoft.com/v1.0/sites/<siteid>/lists/<listid>/items?$expand=fields
This will give you the lookup id. Now you can use this Lookup-Id to set the value. Please refer to the below sample screenshot.
Note:
- Field name is provided in the following format: {field-name}LookupId
- Field value corresponds to lookup id and provided as a string
Hope this helps.
If the answer is helpful, please click "Accept Answer" and kindly upvote. If you have further questions about this answer, please click "Comment".