Hi @Anonymous,
This is because that you only patched the DisplayName part of Person and Group field. As the Person or group column type in SharePoint list is considered as a lookup field, we should patch the whole record of the person to this field.
I will share an example here.
Patch to the Person or group field. The record of single person would contain the following values:
{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|mona@wiXXXX.onmicrosoft.com",
Department:"",
DisplayName:"Mona Li",
Email:"Mona@wiXXXX.onmicrosoft.com",
JobTitle:"",
Picture:""
}
Each value should match the pre-defined value stored under SharePoint data source, if you have no idea for the Department, JobTitle or Picture field, you may just leave it as "".
Fields need to be entered:
The Value for this field is fixed.
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
for Claims field,you should modify the end of this field to match the person Email:
Claims:"i:0#.f|membership|mona@wiXXXX.onmicrosoft.com",
And the DisplayName and Email field, as shown below:
DisplayName:"Mona Li",
Email:"Mona@wiXXXX.onmicrosoft.com",
Regards,
Mona