In old designer while we are creating an email message we have no problems with filling up Activity Parties:
[
{
"participationtypemask": "2",
"partyid@odata.bind": "systemusers([User.GUID])})"
},
{
"participationtypemask": "1",
"partyid@odata.bind": "queues([Queue.GUID])"
}
]
But in new designer we facing a problem, it messes up our array to this and our flow crashes while executing:
[
{
"participationtypemask": "2",
"bind": "systemusers([User.GUID])})"
},
{
"participationtypemask": "1",
"bind": "queues([Queue.GUID])"
}
]
Simply it removes the "partyid@odata" part from values. It happens every time we try to fill up the Activity Parties, if we don't touch it, JSON doesn't change.