Tag Archives: Retrieve fields

How to retrieve all the fields of entity details in Salesforce using SOQL

Step 1: First create the salesforce API. Please refer to my my previous post. Step 2: Pass the account ids as array.. as  GetAccountDetails(new string {“6ghgg687ihh”, “9hhj789899n”}) public List<Account> GetAccountDetails(string[] accountIds) { List<Account> objAccountList = new List<Account>(); Account objAccount = … Continue reading

Posted in Salesforce | Tagged , , | Leave a comment