-
-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating a record throws an exception #86
Comments
Please provide the code you're trying to execute. |
I think i am experiencing a similar problem: I want to update a record like this: $account = Account::find('a017Q00001E2xxxxxx');
$account->update(['Description__c' => 'Hello World']); but i get the following Error:
The following Forrest method worked though: Forrest::sobjects('Mandat__c/a017Q00001E2xxxxxx',[
'method' => 'patch',
'body' => [
'Description__c' => 'Hello World',
]
]); Any idea what the problem could be? |
@IdrisN , for me it was not an update method, I've tried to UPSERT records. Good luck. |
@IdrisN could you provide the code for your public $columns = [
'Custom_Text_Field__c',
'Email',
'FirstName',
'LastName',
'Company',
'Custom_Date_Field__c',
'Id',
'CreatedDate',
'LastModifiedDate',
'IsDeleted',
]; |
Using
Elsf v2.14.4
Forrest v2.14.1
~
Running from within a command, that's why the trace is short.
New project, new Salesforce, can't find out why 😩
Thanks a lot :)
The text was updated successfully, but these errors were encountered: