Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

By Salesforce Id

This code block retrieves a Contact record from Salesforce

ContactService contactService = new ContactService(salesforceSession);
 
//This is the Id for a contact directly from the browsers address bar
Id contactId = new Id("00390000001TjMHAA0");
 
Contact contact = contactService.GetByEntityId(contactId, new SObjectField[] {Contact.Fields.Id, Contact.Fields.FirstName, Contact.Fields.LastName});
Assert.IsNotNull(contact);
Assert.AreEqual(contactId, contact.Id);
  • No labels