Hi,
I am using the below action to update a Risk, the problem is with the "Effects" multichoice column:

The value of the "Effects" variable is:
[
{
"Value": "Cost"
},
{
"Value": "Quality"
},
{
"Value": "Benefits"
}
]
And in the action is used as shown in the screenshot:
"Effects": {
"__metadata": {
"type": "Collection(Edm.String)"
},
"results": @{variables('Effects')}
},But keep on getting this error:
{
"status": 400,
"message": "An unexpected 'StartObject' node was found when reading from the JSON reader. A 'PrimitiveValue' node was expected.\r\nclientRequestId: xxx\r\nserviceRequestId: xxx",
"source": "https://xxx.sharepoint.com/sites/xxx/xxx/_api/web/lists/getbytitle('Risks')/items",
"errors": [
"-1",
"Microsoft.SharePoint.Client.InvalidClientQueryException"
]
}
The column setting are:

Any hint would be much appreciated!