Greetings Dev Team! As always, thanks in advance for your awesome and quick response to my issue! I am using the PHP Wrappers for OAuth2 and it seems that when I search for a user, it doesn't return ANY data. {$search = $ConstantContact->searchContactsByEmail($email)} Contact Object
(
[link] => /ws/customers/{ccusername}/contacts/###
[id] => http://api.constantcontact.com/ws/customers/{ccusername}/contacts/###
[updated] => 2012-10-31T23:53:20.923Z
[status] => Active
[emailAddress] => {testemail}@river-media.net
[emailType] => HTML
[firstName] =>
[middleName] =>
[lastName] =>
[fullName] =>
[jobTitle] =>
[companyName] =>
[homePhone] =>
[workPhone] =>
[addr1] =>
[addr2] =>
[addr3] =>
[city] =>
[stateCode] =>
[stateName] =>
[countryCode] =>
[countryName] =>
[postalCode] =>
[subPostalCode] =>
[notes] =>
[customField1] =>
[customField2] =>
[customField3] =>
[customField4] =>
[customField5] =>
[customField6] =>
[customField7] =>
[customField8] =>
[customField9] =>
[customField10] =>
[customField11] =>
[customField12] =>
[customField13] =>
[customField14] =>
[customField15] =>
[contactLists] =>
[confirmed] =>
[optInSource] => ACTION_BY_CONTACT
[lists] => Array
(
)
) I am assuming when performing the search, that the results should pull ALL user data from CC so that I can parse in order to send that same data back (?) I read somewhere that if you send blank or missing values, the original data will be lost. Anyways, your help is GREATLY appreciated!
... View more