Hi.
Can someone tell me where in the docs I can find a list of the fields that can be set for records of different types. eg:
CRMConnection crm = createConnection();
DataRecord contact = new DataRecord();
contact.setName("contact");
contact.setAction(DataRecord.INSERT);
contact.setShareKey(true);
contact.addField("nameFirst", "Jeff");
contact.addField("nameLast", "Gehlbach");
contact.addField("company", "Malta");
contact.addField("title", "Knight of Order");
contact.addField("source", "Always");
contact.addField("isLead", "true");
contact.addField("accessType", 2);
contact.addField("leadStatus", 1);
contact.addField("enteredBy", 0);
contact.addField("modifiedBy", 0);
That adds a lead. Where can I find a list of the fields ike 'company', 'isLead' ... that I can set and what their values mean in the case of numerical values?
Thanks
Daniel