Is it possible, with the REST API available from SalesForce, to get the list of all leads and all their details?
Asked
Active
Viewed 5,695 times
1 Answers
3
Sure you can, with the help of SOQL queries.
Read here: https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_query.htm
Example: POST https://instance_name.salesforce.com/services/data/v40.0/query?q=SELECT Id,FirstName,LastName FROM Lead

Abhishek Arora
- 64
- 5
-
Thank you very much for your help. – herve Aug 01 '17 at 13:50