Hi, We have an old development based on the .NET wrapper library of Constant Contact's V1 API that has been succesfully working for several months. But, since the last week, we are getting an error when attempting to update a contact. The code we're using with your wrapper is as follows: Contact xContactTemp = Utility.GetContactDetailsById(AuthenticationData, xContactList[0].Id);
if (xContactTemp.ContactLists.Count > 0 )
{
xContactTemp.ContactLists.Clear();
xContactTemp.Status = ContactStatus.Removed;
Utility.UpdateContactFullForm(AuthenticationData, xContactTemp);
} The UpdateContactFullForm function throws an exception error 400 Bad request. The XML that is generated from the UpdateContactFullForm function is as follows: <entry xmlns="http://www.w3.org/2005/Atom">
<title type="text"></title>
<updated>2008-07-23T14:21:06.407Z</updated>
<author><name>Constant Contact</name></author>
<id>http://api.constantcontact.com/ws/customers/*username*/contacts/*idcontact*</id>
<summary type="text">Contact</summary>
<content type="application/vnd.ctct+xml">
<Contact xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/*username*/contacts/*idcontact*">
<EmailAddress>mail@mail.com</EmailAddress>
<FirstName>Name</FirstName>
<LastName></LastName><MiddleName></MiddleName>
<OptInSource>ACTION_BY_CONTACT</OptInSource>
<HomePhone></HomePhone><Addr1></Addr1><Addr2></Addr2><Addr3></Addr3>
<City>Afghanistan</City>
<StateCode></StateCode><StateName></StateName><CountryCode></CountryCode><CountryName></CountryName><PostalCode></PostalCode><SubPostalCode></SubPostalCode>
<EmailType>HTML</EmailType>
<WorkPhone></WorkPhone><JobTitle></JobTitle><CompanyName></CompanyName><Note></Note><CustomField1></CustomField1>
<CustomField2>Selected option</CustomField2>
<CustomField3></CustomField3><CustomField4></CustomField4>
<CustomField5></CustomField5>
<CustomField6></CustomField6><CustomField7></CustomField7><CustomField8></CustomField8><CustomField9></CustomField9><CustomField10></CustomField10><CustomField11></CustomField11><CustomField12></CustomField12><CustomField13></CustomField13><CustomField14></CustomField14><CustomField15></CustomField15>
<ContactLists></ContactLists>
</Contact>
</content>
</entry> I've validated the XML structure and seems to be correct but I'm still getting the 400 Bad request response. Has anything changed recently? Any idea about it? Any assistance would be greatly appreciated. Thanks in advance. Teo
... View more