Hi,
I am trying to update a contact with some info, in order to do that I am trying to search a contact from my contacts list. But, I dont want to go through each and every contact in the list to update a particular contact.
Hence, I was trying to use getContactByEmail from java api. Following is the way I create the link;
"https://api.constantcontact.com/ws/customers/<username>/contacts?email=someone@example.com"
I end up getting a wrong contact from the above mentioned link. What could be wrong?
Also, from the same client I am trying to get list of all contacts updated since a particular date, following is the link to get that list of contacts;
"https://api.constantcontact.com/ws/customers/<username>/contacts?updatedsince=2011-01-26T13:23:42.420Z"
Despite of passing the date it ends up returning all contacts in the list.
Any pointers as to what could be going wrong?
... View more