Last seen: Jan 22, 2025
Its because the field CODE__c is not marked as external id. Make sure the external id check box is checked for that field and then the API will work. ...
Found out the issue. Make sure mydomain name is used instead of instance url in base url in the api end point. For example: Instance URL:/span>Ba...
Figured it out. Name is a required field and when you supply null value via JSON, the newly created record's id is used for the record Name field as w...
Try going into the settings tab in Postman and turn on the Follow Authorization Header setting. Salesforce Integration INVALID_SESSION_ID using Post...
insert new Task( Subject = 'Subject: Test email....', WhoId = myContact.Id, WhatId = myOpportunity.Id, TaskSubtype = 'Email', ...
The merge statement merges up to three records of the same sObject type into one of the records, deleting the others, and re-parenting any related rec...
Here is an example. Insert Account and Contact using one insert statement: Account a = new Account(Customer_ID__c='123',name='account1'); Contact c...