Hi, I'm using the API v2. I am able to POST new contact name and email info but not address info. I am using a the PHP-sdk with a custom HTML form. The relevant code is as follows: $contact = new Contact(); $contact->addEmail($_POST['email']); $contact->addList("138"); $contact->last_name = $_POST['name']; $address = new Address(); $address->address_type = "UNKNOWN"; $address->line1 = $_POST['street']; $address->city = $_POST['city']; $address->state_code = $_POST['state']; $address->postal_code = $_POST['zip']; $contact->addAddress($address); $customField = new CustomField(); $customField->name = "CustomField2"; $customField->value = "CustomFieldValue"; $contact->addCustomField($customField); Neither static strings (e.g. CustomField2) nor dynamic values ($_POST['some_value']) will POST to a new contact. The name and email will successfully POST, however. https://gist.github.com/dsjellz/5562021 this was the only help I could find and it does not work. Please advise.
... View more