function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AaronZhangAaronZhang 

Can't create Case Object via Web Service.

    I could create case object before via Web Service before. But today, the Case object can't be created. Can some configuration changes by Salesforce administrator lead to it?

 

Thanks,

Aaron
Best Answer chosen by Admin (Salesforce Developers) 
AaronZhangAaronZhang

No error messages.  After we user a more powerful API user, it is resolved.

Anyway, thanks.

All Answers

WesNolte__cWesNolte__c

Hey

 

Are you getting errors? What are the message details? Can you post the code that makes the callout/deals with the call?

 

Wes 

AaronZhangAaronZhang

No error messages.  After we user a more powerful API user, it is resolved.

Anyway, thanks.

This was selected as the best answer
SuperfellSuperfell
For future reference, the CRUD api's return a SaveResult structure that will include the success/failure of each row, and in the case of failure an error status / message. Because of the bulk nature of these calls, they don't throw an exception, so you need to examine the returned set of save results. see the api docs for more info.