function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
IbtIbt 

Get records from custom object

Can any body please tell me that Is there any wary to get custom object records from salesforce database to my web application? If yes, please provide links.

SuperfellSuperfell

Yes, the REST & SOAP APIs support custom objects. start at http://wiki.developerforce.com/index.php/Integration

IbtIbt

So many links and content. Get confused with so much content. I implemented partner and metadata api in my web application. Can you please guide me to get access with customize objects only. Is there any possibility to retrieve custom objects through partner api?

SuperfellSuperfell

yes, use soql, e.g. select id, name from myCustomObject__c, you can use describeGlobal to determine the names of all the objects in your schema including custom objects. Check out the getting started section of the SOAP API docs.

IbtIbt

String soqlQuery="Select Pack1__EmailAddress__c From Pack1__sampcustobj__c";

 

Using query(soqlQuery) method Iam able to get records from custom object. 

 

Thanks very much.