turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Constant Contact Community
- :
- Developer Community
- :
- Documentation
- :
- Creating a New List
Article Options
- Subscribe to RSS Feed
- Bookmark
- Subscribe
- Email to a Friend
- Printer Friendly Page
- Report Inappropriate Content
A new Contact list is created by making an HTTP POST to the collection URI.
https://api.constantcontact.com/ws/customers/{username}/lists
The POST body must contain an Atom entry element that includes the content for the new list. The Content-Type of the request must be set to application/atom+xml. Here is a representative entry:
<entry xmlns="http://www.w3.org/2005/Atom"> <id>data:;,</id> <title /> <author /> <updated>2008-04-16</updated> <content type="application/vnd.ctct+xml"> <ContactList xmlns="http://ws.constantcontact.com/ns/1.0/"> <OptInDefault>false</OptInDefault> <Name>A New List</Name> <SortOrder>99</SortOrder> </ContactList> </content> </entry>



