Blogs
-
Using cURL in apex to retrieve the records in Salesforce
To retrieve records in Salesforce using a curl request in Apex, you would need to make use of Salesforce’s REST API. Assuming you are well aware of HTTP requests, REST Api and cURL; Here’s an example of how you can construct a curl request in Apex to retrieve records: In this example, we are constructing…
-
“ENTITY_IS_LOCKED” error while updating record using flow or manually
This error can take place while updating the record manually or using automation. This simply tells the record is locked due to pending approval process or due to being a direct child of a master record. There are two scenario when this takes place. A lock icon is shown on the record and except admin…
-
How can we refresh or create Sandbox using API in Salesforce
INTRODUCTION The objects ‘SandboxInfo’ and ‘SandboxProcess,’ are available in API v35 or higher, and allow you to create and refresh sandboxes. Tolloing api can be used to create or refresh the sandbox. SandboxInfoRepresents a sandbox. SandboxInfo enqueues a sandbox for creation or for being refreshed. To learn more please review the Force.com Tooling API SandboxInfo section. SandboxProcessRepresents…