Hi all,
I need to update a multi select person field in a large list (> 14000 entries).
Currently I'm using a HTTP request to just update the field:
{
"formValues":
[
{
"FieldName": "Besitzerprofil",
"FieldValue": "[
{ 'Key': 'email1(at)company.com' },
{ 'Key': 'email2(at)company.com' }
]"
}
],
"bNewDocumentUpdate":true
}
This work pretty fine and fast.
However if a user id does no longer exits the whole field is not updated even if the other users exist.
I know that I can check with the Office 365 user connector if the user is active or not BUT due to the sheer amount of list elements + up to 50 users per people field the runtime of the Flow would be endless and may exceed my daily limit of API calls.
Do you have any good suggestions for my problem? :)
Best regards
Edit: corrected the HTTP request according to user answer below, nothing changed.