Patch multiple people into SharePoint collumn

Copper Contributor

Hello,

 

I have been trying to patch multiple people in one SP collumn and currently have this patch function written down but I can't figure out the reason why only one of multiple people are patched

 

Patch('LIST NAME', varRecord,
 { 'Responsible person': Table(
    {
        '@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
        Claims:"i:0#.f|membership|" & Lower(DataCardValue128.Selected.Email),
        Department: "",
        DisplayName: DataCardValue128.Selected.DisplayName,
        Email: DataCardValue128.Selected.Email,
        JobTitle: ".",
        Picture: "."
    },
    {
        '@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
        Claims:"i:0#.f|membership|" & Lower(DataCardValue128.Selected.Email),
        Department: "",
        DisplayName: DataCardValue128.Selected.DisplayName,
        Email: DataCardValue128.Selected.Email,
        JobTitle: ".",
        Picture: "."
    })})
0 Replies