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'
0 Comments