Hello,
Does anyone know how to update a multi-people picker column in a SharePoint list item using the REST API?
Site Address: A SharePoint site
URI: _api/web/lists/getbytitle('your list name')/items(<id of item you wish to update>)/validateUpdateListItem
This is the header I am using: Accept: application/json;odata=nometadata Content-Type: application/json;odata=nometadata
Body:
{ "formValues": [ { "FieldName": "Title", "FieldValue": "Test" }, { "FieldName": "Approvers", "FieldValue": "?" } ], "bNewDocumentUpdate": true }
What value should I use as input for the Approvers column?
And what is the best way to achieve this?
Thank you!