Tzach
Tzach

Reputation: 13376

Salesforce.com REST API - Removing object field's value

In the Salesforce.com REST API sObjects PATCH command, how do I remove an object's field?

Upvotes: 2

Views: 1985

Answers (1)

Tzach
Tzach

Reputation: 13376

Found the answer, the following methods work:

  • {"FieldName" : ""}
  • {"FieldName" : null}

Upvotes: 2

Related Questions