I am trying to update a multi-select choice field in a sharepoint list from flow. I keep getting the error
OpenApiOperationParameterValidationFailed. The 'inputs.parameters' of workflow operation 'Create_item' of type 'OpenApiConnection' is not valid. Error details: The API operation does not contain a definition for parameter 'item/Color'.
If I hardcode those array values in the Create item section it creates without any problems. It is just when I'm passing in an array to the multi-select choice field.
Below is the column definition in sharepoint and the flow they I created to update this column.


If I harcode it like the following it works without a problem.

If you look at the inputs for the Create Item step they both show the following:
{
"host": {
"apiId": "subscriptions/12345678-1234-1234-a1234-1234567890/providers/Microsoft.Web/locations/westus/runtimes/msmanaged-na/apis/sharepointonline",
"connectionReferenceName": "shared_sharepointonline",
"operationId": "PostItem"
},
"parameters": {
"dataset": "https://sitename.sharepoint.com/sites/ABC/IT",
"table": "1234-1234-1324-1234-123456789012",
"item/Title": "Test2",
"item/Color": [
{
"Value": "Red"
},
{
"Value": "Yellow"
}
]
}
}Anyone have any idea on this error, or another way to populate a multi-select choice field?