Hi, I have a few flows doing updates in Salesforce in an integration. I use the Update record (V3) to make updates in Salesforce.
The connector looks like this:
Note that the Opportunity Close Date field is marked as Required, it is important.
So when I run the flows this happens:
Let's have a closer look at the error:
The 'inputs.parameters' of workflow operation 'Update_record_(V3)' of type 'OpenApiConnection' is not valid. Error details: The API operation 'PatchItem_V3' requires the property 'item/CloseDate' to be a string of maximum length '0' but is of length '10'.
If I understand correctly the error says that this field only accepts string with a max length of '0' but, even assuming that the Date field is converted to string, it doesn't make sense to require it to be length 0.
Note that this is Standard Salesforce field, literally nothing in it can be changed, let alone the field type or the max length (which can't be changed anyway because the field type is Date).
Any guess?