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
maxvalitemaxvalite 

export client contacts

hi team,

i want a web service or a method to which  client will pass his salesforce username n password and it will return me the contact list of clients which i can import in my application. is this possible in C#?? i can see some web services but didnt find the one for exporting contacts.

SuperfellSuperfell

You would access contacts via a call to the query method with a soql query something like "select firstname, lastname, id, and so on from contacts". See the Web Services API docs for more details.

exportContactexportContact

can you please provide the link for sample doc or examples for this..

exportContactexportContact

Hi Team,

 

               I am trying to export contacts from Salesforce.com.  I need links for exporting contacts from salesforce account.Please send it to me... 

SuperfellSuperfell

You would run a SOQL query something like "select id, name, ... from contact" see the Web Services API docs i posted yesterday.

Sridhar BonagiriSridhar Bonagiri

Hi,

 

I think you can write that webservice class.