Hi @Ferdieh,
To update a SharePoint multi value person/group field with graph, please take a reference to the below threads.
- How to update a Lookup field and a user field in SharePoint with Microsoft Graph?
- How do I update the value of Person or Group columns in SharePoint lists using the Microsoft Graph API?
You need to specify the data type first and pass the ids as an array for multi-valued Person/group field.
Url: https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}/fields
Method: PATCH
{
"******@odata.type": "Collection(Edm.String)",
"CategoryLookupId":["1","2"]
}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.