Welcome to my blog

I have been working with Salesforce for quite a while, so don’t hesitate to contact me if you have any questions or want some advice.

s f

Subscribe
Follow Us
h

Pull List of record from sObject using SFDC Standard REST API

 . API  . Pull List of record from sObject using SFDC Standard REST API

Pull List of record from sObject using SFDC Standard REST API

Pull List of Record From sObject Using SFDC Standard REST API

We can use standard REST API to pull list of sObject records to External system from salesforce.

Please find below REST API to pull list of Account based on Name and Website

Production URL:

https://login.salesforce.com/services/data/v37.0/query?q=SELECT+Id,name+FROM+Account+WHERE+name='Sathish'+AND+website='www.sathishsfdc.wordpress.com

Sandbox URL:

https://test.salesforce.com/services/data/v37.0/query?q=SELECT+Id,name+FROM+Account+WHERE+name='Sathish'+AND+website='www.sathishsfdc.wordpress.com'

Post a Comment