I have an email with the status "Do Not Mail". I am using the following to build my post info: postInfo = "<entry xmlns=""http://www.w3.org/2005/Atom"">" &vbCrLF postInfo = postInfo & "<title type=""text""></title>" &vbCrLF postInfo = postInfo & "<updated>" & date &"</updated>" &vbCrLF postInfo = postInfo & "<author></author>" &vbCrLF postInfo = postInfo & "<id>data:,none</id>" &vbCrLF postInfo = postInfo & "<summary type=""text"">Contact</summary>" &vbCrLF postInfo = postInfo & "<content type=""application/vnd.ctct+xml"">" &vbCrLF postInfo = postInfo & "<Contact xmlns=""http://ws.constantcontact.com/ns/1.0/"">" &vbCrLF postInfo = postInfo & "<OptInSource>ACTION_BY_CONTACT</OptInSource>" &vbCrLF postInfo = postInfo & "<ContactLists>" &vbCrLF postInfo = postInfo & "<ContactList id=""http://api.constantcontact.com/ws/customers/UN/lists/1""></ContactList>" &vbCrLF postInfo = postInfo & "</ContactLists>" &vbCrLF postInfo = postInfo & "</Contact>" &vbCrLF postInfo = postInfo & "</content>" &vbCrLF postInfo = postInfo & "</entry>" &vbCrLF My connstring is using this format: http://api.constantcontact.com/ws/customers/UN/contacts/9999 its actually using https versus http and 9999 would be the actual contact_id and Method is PUT When I run it, I get the following error: Error 409: The request contains errors in the common Atom sections, which lie outside or , such as , , or . Am I missing something in building my post that is causing this error?
... View more