Hi, I'm trying to update users (emphasizing users and not a single user) in the "Update item" (SharePoint) action and I can't figure out what type of value I should enter and how it should look. My understanding is that I need to use an Array and that's what I've come up with now -
[
{
"email": "XXXXXXXXXXXXX",
"claims": "updated claim value for user 1"
},
{
"email": "XXXXXXXXXXXXX",
"claims": "updated claim value for user 2"
},
{
"email": "XXXXXXXXXXXXX",
"claims": "updated claim value for user 3"
}
]

*Im on "input entire array.
Where am I wrong?