Salesforce Address Search Package | Address Validation with OpenStreetMap API

The Salesforce Address Search Package is a powerful and scalable solution designed to automate address validation and standardization inside Salesforce. The package integrates Salesforce with OpenStreetMap/Nominatim APIs to validate address information, standardize State and Country values, and improve CRM data accuracy. Using Apex callouts, Queueable Apex processing, fuzzy matching algorithms, and Salesforce State & Country […]

Apex to transfer Image

Salesforce apex to send image file to 3rd party using REST API

Salesforce apex to send image file to 3rd party using REST API //attObj is an Object of Attachment object for which values will be coming from Visualforce page. //Attachment attObj = new attachment(); public pagereference customsave(){ String fileName = attObj.name; Blob file_body = attObj.body; String targetURL = system.label.ImageUploadEndPointURL; //API End point URL String boundary =

Scroll to Top