How to do callout integration? : salesforce integration
Answer / Yasir Moheet
To perform callout integration in Salesforce, you can use Apex REST or SOAP web services. Here's a basic example of Apex REST:nn```javanHttp http = new Http();nHttpRequest req = new HttpRequest();nreq.setEndPoint('https://example.com');nreq.setMethod('GET');nHttpResponse res = http.send(req);n```
| Is This Answer Correct ? | 0 Yes | 0 No |
What is whoid and whatid in activities?
In which below scenario users will be able to edit each other's records?
Explain few considerations for @future annotation in apex?
What is inline editing?
Through sales force import wizard how many records we can import?
Is it possible to change/modify the child record settings of a master-detail relationship, for setting owd (organization-wide settings)?
When should apex be used?
What is record type?
What are some governor limits in salesforce?
What is a Batch Apex?
If there is a custom object with records, is it possible to create a field with master-detail relationship for this object?
Explain skinny table? : salesforce crm