In a previous post, we started discussing integrations and consuming Salesforce data. Today, we will continue that discussion with consuming API in Salesforce integrations and using JSON and Apex callouts.…
Tag: apex
Integration - Consuming Salesforce Data
Integration – Consuming Salesforce Data Many times, it’s necessary to consume external APIs to either send or receive data in Salesforce. This helps multiple systems to be in sync with…
Integration - Exposing Salesforce Data
At times, it’s required for you to share Salesforce object’s data with external systems for Integration. You can do it by using a Salesforce connected app and an Apex Class…
Apex Best Practices
Apex is a customized solution on the Salesforce platform. As a result, best practices need to be followed when creating and testing apex in Salesforce since it’s something that’s being…
Salesforce Batch Apex
When we need to process thousands of records in the background upon whom we won’t be able to perform DMLs in the sync transaction given their volume. To help with…
Callout from Trigger
On certain occasions, you’ll need to make an API call to an external system to get or post some data to or from Salesforce. Think about what will happen if…