Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Implemented
-
2.19.1
-
None
-
Unknown
Description
When in Salesforce I have an object with a nullable field, and want to set its value to null, there's no way to do it.
Actually it's enough to pass empty string ("") or null as field value to SF REST API to set field to null.
Both
{ "PoBox__c": null }
and
{
"PoBox__c": ""
}
are valid.