Last seen: Jul 15, 2024
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...
Lets say you wan to find out the id of the opportunity from a visualforce page: public class YourClass { public string OppId{get;set;} // To ...