How to display Salesforce Validation error messages directly through the API

In the current version of Salesforce

  • IF I have several validation rules. Error message defined on one object
  • AND IF these rules are not followed when you click "Save"
  • Then I get some error messages (all at once).

This is what I would like to have when using API calls.

As of now, I get error messages one by one through API calls. Is there a way to display all error messages at once, as it happens in the Salesforce interface?

+5
source share
1 answer

No, currently API processing stops at the first error and reports that there is no way to report all errors.

+2

All Articles