constant_contact 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +56 -0
  3. data/lib/constant_contact.rb +13 -0
  4. data/lib/constant_contact/activity.rb +41 -0
  5. data/lib/constant_contact/base.rb +150 -0
  6. data/lib/constant_contact/campaign.rb +112 -0
  7. data/lib/constant_contact/contact.rb +82 -0
  8. data/lib/constant_contact/contact_event.rb +7 -0
  9. data/lib/constant_contact/email_address.rb +6 -0
  10. data/lib/constant_contact/formats.rb +3 -0
  11. data/lib/constant_contact/formats/atom_format.rb +78 -0
  12. data/lib/constant_contact/formats/html_encoded_format.rb +17 -0
  13. data/lib/constant_contact/list.rb +11 -0
  14. data/lib/constant_contact/member.rb +5 -0
  15. data/lib/constant_contact/version.rb +3 -0
  16. data/test/constant_contact/activity_test.rb +41 -0
  17. data/test/constant_contact/atom_format_test.rb +28 -0
  18. data/test/constant_contact/base_test.rb +85 -0
  19. data/test/constant_contact/contact_test.rb +135 -0
  20. data/test/constant_contact/list_test.rb +17 -0
  21. data/test/constant_contact/member_test.rb +25 -0
  22. data/test/constant_contact_test.rb +8 -0
  23. data/test/fixtures/all_contacts.xml +51 -0
  24. data/test/fixtures/contactlistscollection.xml +96 -0
  25. data/test/fixtures/contactlistsindividuallist.xml +30 -0
  26. data/test/fixtures/memberscollection.xml +763 -0
  27. data/test/fixtures/new_list.xml +16 -0
  28. data/test/fixtures/nocontent.xml +12 -0
  29. data/test/fixtures/service_document.xml +15 -0
  30. data/test/fixtures/single_contact_by_email.xml +34 -0
  31. data/test/fixtures/single_contact_by_id.xml +71 -0
  32. data/test/fixtures/single_contact_by_id_with_no_contactlists.xml +65 -0
  33. data/test/test_helper.rb +46 -0
  34. metadata +186 -0
@@ -0,0 +1,25 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class MemberTest < Test::Unit::TestCase
4
+
5
+ # context 'initialize' do
6
+ # setup do
7
+ # @xml_str_1 = <<Feed
8
+ # <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/5">
9
+ # <EmailAddress>toney_hane@browngislason.name</EmailAddress>
10
+ # <Name>Swaniawski, Noemi</Name>
11
+ # </ContactListMember>
12
+ # Feed
13
+ #
14
+ # end
15
+ #
16
+ # should 'parse and assign attributes' do
17
+ # m = ConstantContact::Member.new(@xml_str_1)
18
+ # assert_equal 'Swaniawski, Noemi', m.name
19
+ # assert_equal 'toney_hane@browngislason.name', m.email_address
20
+ # end
21
+ # end
22
+ def test_truth
23
+ assert true
24
+ end
25
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class ConstantContactTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,51 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <feed xmlns="http://www.w3.org/2005/Atom">
3
+ <id>http://api.constantcontact.com/ws/customers/joesflowers/contacts</id>
4
+ <title type="text">Contacts for Customer: joesflowers</title>
5
+ <link href="contacts" />
6
+ <link href="contacts" rel="self" />
7
+ <author>
8
+ <name>joesflowers</name>
9
+ </author>
10
+ <updated>2010-04-22T00:09:05.992Z</updated>
11
+ <link href="/ws/customers/joesflowers/contacts" rel="first" />
12
+ <link href="/ws/customers/joesflowers/contacts" rel="current" />
13
+ <entry>
14
+ <link href="/ws/customers/joesflowers/contacts/2" rel="edit" />
15
+ <id>http://api.constantcontact.com/ws/customers/joesflowers/contacts/2</id>
16
+ <title type="text">Contact: jon@example.com</title>
17
+ <updated>2010-04-22T00:09:06.017Z</updated>
18
+ <author>
19
+ <name>Constant Contact</name>
20
+ </author>
21
+ <content type="application/vnd.ctct+xml">
22
+ <Contact xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/joesflowers/contacts/2">
23
+ <Status>Active</Status>
24
+ <EmailAddress>jon@example.com</EmailAddress>
25
+ <EmailType>HTML</EmailType>
26
+ <Name>smith, jon</Name>
27
+ <OptInTime>2010-04-21T18:35:34.066Z</OptInTime>
28
+ <OptInSource>ACTION_BY_CUSTOMER</OptInSource>
29
+ </Contact>
30
+ </content>
31
+ </entry>
32
+ <entry>
33
+ <link href="/ws/customers/joesflowers/contacts/1" rel="edit" />
34
+ <id>http://api.constantcontact.com/ws/customers/joesflowers/contacts/1</id>
35
+ <title type="text">Contact: webdeveloper@fullsteam.com</title>
36
+ <updated>2010-04-22T00:09:06.017Z</updated>
37
+ <author>
38
+ <name>Constant Contact</name>
39
+ </author>
40
+ <content type="application/vnd.ctct+xml">
41
+ <Contact xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/joesflowers/contacts/1">
42
+ <Status>Active</Status>
43
+ <EmailAddress>my@example.com</EmailAddress>
44
+ <EmailType>HTML</EmailType>
45
+ <Name>Doe, Marvin</Name>
46
+ <OptInTime>2010-04-14T22:09:42.950Z</OptInTime>
47
+ <OptInSource>ACTION_BY_CUSTOMER</OptInSource>
48
+ </Contact>
49
+ </content>
50
+ </entry>
51
+ </feed>
@@ -0,0 +1,96 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <feed xmlns="http://www.w3.org/2005/Atom">
3
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists</id>
4
+ <title type="text">Contact Lists for Customer: recordkick</title>
5
+ <link href="http://api.constantcontact.com/ws/customers/recordkick/lists" />
6
+ <link href="http://api.constantcontact.com/ws/customers/recordkick/lists" rel="self" />
7
+ <author>
8
+ <name>recordkick</name>
9
+ </author>
10
+ <updated>2009-07-07T23:30:17.373Z</updated>
11
+ <link href="/ws/customers/recordkick/lists" rel="first" />
12
+ <link href="/ws/customers/recordkick/lists" rel="current" />
13
+ <entry>
14
+ <link href="/ws/customers/recordkick/lists/active" rel="edit" />
15
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/active</id>
16
+ <title type="text">Active</title>
17
+ <updated>2009-07-07T23:30:17.388Z</updated>
18
+ <author>
19
+ <name>Constant Contact</name>
20
+ </author>
21
+ <content type="application/vnd.ctct+xml">
22
+ <ContactList xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/lists/active">
23
+ <Name>Active</Name>
24
+ <ShortName>Active</ShortName>
25
+ </ContactList>
26
+ </content>
27
+ </entry>
28
+ <entry>
29
+ <link href="/ws/customers/recordkick/lists/do-not-mail" rel="edit" />
30
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/do-not-mail</id>
31
+ <title type="text">Do Not Mail</title>
32
+ <updated>2009-07-07T23:30:17.388Z</updated>
33
+ <author>
34
+ <name>Constant Contact</name>
35
+ </author>
36
+ <content type="application/vnd.ctct+xml">
37
+ <ContactList xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/lists/do-not-mail">
38
+ <Name>Do Not Mail</Name>
39
+ <ShortName>Do Not Mail</ShortName>
40
+ </ContactList>
41
+ </content>
42
+ </entry>
43
+ <entry>
44
+ <link href="/ws/customers/recordkick/lists/removed" rel="edit" />
45
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/removed</id>
46
+ <title type="text">Removed</title>
47
+ <updated>2009-07-07T23:30:17.388Z</updated>
48
+ <author>
49
+ <name>Constant Contact</name>
50
+ </author>
51
+ <content type="application/vnd.ctct+xml">
52
+ <ContactList xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/lists/removed">
53
+ <Name>Removed</Name>
54
+ <ShortName>Removed</ShortName>
55
+ </ContactList>
56
+ </content>
57
+ </entry>
58
+ <entry>
59
+ <link href="/ws/customers/recordkick/lists/1" rel="edit" />
60
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/1</id>
61
+ <title type="text">General Interest</title>
62
+ <updated>2009-07-07T23:30:17.389Z</updated>
63
+ <author>
64
+ <name>Constant Contact</name>
65
+ </author>
66
+ <content type="application/vnd.ctct+xml">
67
+ <ContactList xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/lists/1">
68
+ <OptInDefault>true</OptInDefault>
69
+ <Name>General Interest</Name>
70
+ <ShortName>General Interest</ShortName>
71
+ <DisplayOnSignup>Yes</DisplayOnSignup>
72
+ <SortOrder>1</SortOrder>
73
+ <Members id="http://api.constantcontact.com/ws/customers/recordkick/lists/1/members"></Members>
74
+ </ContactList>
75
+ </content>
76
+ </entry>
77
+ <entry>
78
+ <link href="/ws/customers/recordkick/lists/2" rel="edit" />
79
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/2</id>
80
+ <title type="text">Clients</title>
81
+ <updated>2009-07-07T23:30:17.389Z</updated>
82
+ <author>
83
+ <name>Constant Contact</name>
84
+ </author>
85
+ <content type="application/vnd.ctct+xml">
86
+ <ContactList xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/lists/2">
87
+ <OptInDefault>false</OptInDefault>
88
+ <Name>Clients</Name>
89
+ <ShortName>Clients</ShortName>
90
+ <DisplayOnSignup>No</DisplayOnSignup>
91
+ <SortOrder>2</SortOrder>
92
+ <Members id="http://api.constantcontact.com/ws/customers/recordkick/lists/2/members"></Members>
93
+ </ContactList>
94
+ </content>
95
+ </entry>
96
+ </feed>
@@ -0,0 +1,30 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <entry xmlns="http://www.w3.org/2005/Atom">
3
+ <link href="/ws/customers/recordkick/lists/1" rel="edit" />
4
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/1</id>
5
+ <title type="text">General Interest</title>
6
+ <updated>2009-07-07T23:49:09.032Z</updated>
7
+ <author>
8
+ <name>Constant Contact</name>
9
+ </author>
10
+ <content type="application/vnd.ctct+xml">
11
+ <ContactList>
12
+ <OptInDefault>true</OptInDefault>
13
+ <Name>General Interest</Name>
14
+ <ShortName>General Interest</ShortName>
15
+ <DisplayOnSignup>Yes</DisplayOnSignup>
16
+ <SortOrder>1</SortOrder>
17
+ <Members id="http://api.constantcontact.com/ws/customers/recordkick/lists/1/members"></Members>
18
+ </ContactList>
19
+ </content>
20
+ <source>
21
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists</id>
22
+ <title type="text">Contact Lists for Customer: recordkick</title>
23
+ <link href="http://api.constantcontact.com/ws/customers/recordkick/lists" />
24
+ <link href="http://api.constantcontact.com/ws/customers/recordkick/lists" rel="self" />
25
+ <author>
26
+ <name>recordkick</name>
27
+ </author>
28
+ <updated>2009-07-07T23:49:09.032Z</updated>
29
+ </source>
30
+ </entry>
@@ -0,0 +1,763 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <feed xmlns="http://www.w3.org/2005/Atom">
3
+ <id>http://api.constantcontact.com/ws/customers/recordkick/lists/2/members</id>
4
+ <title type="text">Contacts for Customer: recordkick</title>
5
+ <link href="http://api.constantcontact.com/ws/customers/recordkick/lists/2/members" />
6
+ <link href="http://api.constantcontact.com/ws/customers/recordkick/lists/2/members" rel="self" />
7
+ <author>
8
+ <name>recordkick</name>
9
+ </author>
10
+ <updated>2009-07-09T20:56:20.665Z</updated>
11
+ <link href="/ws/customers/recordkick/lists/2/members" rel="first" />
12
+ <link href="/ws/customers/recordkick/lists/2/members" rel="current" />
13
+ <entry>
14
+ <link href="/ws/customers/recordkick/lists/2/members/51" rel="edit" />
15
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/51</id>
16
+ <title type="text">Contact: winston_stiedemann@mcdermottrobel.uk</title>
17
+ <updated>2009-07-09T20:56:20.868Z</updated>
18
+ <author>
19
+ <name>Constant Contact</name>
20
+ </author>
21
+ <content type="application/vnd.ctct+xml">
22
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/51">
23
+ <EmailAddress>winston_stiedemann@mcdermottrobel.uk</EmailAddress>
24
+ <Name>Donnelly, Mike</Name>
25
+ </ContactListMember>
26
+ </content>
27
+ </entry>
28
+ <entry>
29
+ <link href="/ws/customers/recordkick/lists/2/members/50" rel="edit" />
30
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/50</id>
31
+ <title type="text">Contact: roma.schoen@beerbruen.biz</title>
32
+ <updated>2009-07-09T20:56:20.868Z</updated>
33
+ <author>
34
+ <name>Constant Contact</name>
35
+ </author>
36
+ <content type="application/vnd.ctct+xml">
37
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/50">
38
+ <EmailAddress>roma.schoen@beerbruen.biz</EmailAddress>
39
+ <Name>Mosciski, Marianne</Name>
40
+ </ContactListMember>
41
+ </content>
42
+ </entry>
43
+ <entry>
44
+ <link href="/ws/customers/recordkick/lists/2/members/49" rel="edit" />
45
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/49</id>
46
+ <title type="text">Contact: elbert@schoen.biz</title>
47
+ <updated>2009-07-09T20:56:20.869Z</updated>
48
+ <author>
49
+ <name>Constant Contact</name>
50
+ </author>
51
+ <content type="application/vnd.ctct+xml">
52
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/49">
53
+ <EmailAddress>elbert@schoen.biz</EmailAddress>
54
+ <Name>Witting, Nicholas</Name>
55
+ </ContactListMember>
56
+ </content>
57
+ </entry>
58
+ <entry>
59
+ <link href="/ws/customers/recordkick/lists/2/members/48" rel="edit" />
60
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/48</id>
61
+ <title type="text">Contact: alexandre@schmidtdonnelly.com</title>
62
+ <updated>2009-07-09T20:56:20.869Z</updated>
63
+ <author>
64
+ <name>Constant Contact</name>
65
+ </author>
66
+ <content type="application/vnd.ctct+xml">
67
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/48">
68
+ <EmailAddress>alexandre@schmidtdonnelly.com</EmailAddress>
69
+ <Name>Mante, Julio</Name>
70
+ </ContactListMember>
71
+ </content>
72
+ </entry>
73
+ <entry>
74
+ <link href="/ws/customers/recordkick/lists/2/members/47" rel="edit" />
75
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/47</id>
76
+ <title type="text">Contact: curtis@mcclure.info</title>
77
+ <updated>2009-07-09T20:56:20.869Z</updated>
78
+ <author>
79
+ <name>Constant Contact</name>
80
+ </author>
81
+ <content type="application/vnd.ctct+xml">
82
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/47">
83
+ <EmailAddress>curtis@mcclure.info</EmailAddress>
84
+ <Name>McKenzie, Jackeline</Name>
85
+ </ContactListMember>
86
+ </content>
87
+ </entry>
88
+ <entry>
89
+ <link href="/ws/customers/recordkick/lists/2/members/46" rel="edit" />
90
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/46</id>
91
+ <title type="text">Contact: ben.nitzsche@von.us</title>
92
+ <updated>2009-07-09T20:56:20.870Z</updated>
93
+ <author>
94
+ <name>Constant Contact</name>
95
+ </author>
96
+ <content type="application/vnd.ctct+xml">
97
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/46">
98
+ <EmailAddress>ben.nitzsche@von.us</EmailAddress>
99
+ <Name>McLaughlin, Tyreek</Name>
100
+ </ContactListMember>
101
+ </content>
102
+ </entry>
103
+ <entry>
104
+ <link href="/ws/customers/recordkick/lists/2/members/45" rel="edit" />
105
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/45</id>
106
+ <title type="text">Contact: ezra_rau@feest.info</title>
107
+ <updated>2009-07-09T20:56:20.870Z</updated>
108
+ <author>
109
+ <name>Constant Contact</name>
110
+ </author>
111
+ <content type="application/vnd.ctct+xml">
112
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/45">
113
+ <EmailAddress>ezra_rau@feest.info</EmailAddress>
114
+ <Name>Hettinger, Devante</Name>
115
+ </ContactListMember>
116
+ </content>
117
+ </entry>
118
+ <entry>
119
+ <link href="/ws/customers/recordkick/lists/2/members/44" rel="edit" />
120
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/44</id>
121
+ <title type="text">Contact: maximilian@heathcote.uk</title>
122
+ <updated>2009-07-09T20:56:20.870Z</updated>
123
+ <author>
124
+ <name>Constant Contact</name>
125
+ </author>
126
+ <content type="application/vnd.ctct+xml">
127
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/44">
128
+ <EmailAddress>maximilian@heathcote.uk</EmailAddress>
129
+ <Name>Hintz, Mekhi</Name>
130
+ </ContactListMember>
131
+ </content>
132
+ </entry>
133
+ <entry>
134
+ <link href="/ws/customers/recordkick/lists/2/members/43" rel="edit" />
135
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/43</id>
136
+ <title type="text">Contact: shaylee@baumbach.co.uk</title>
137
+ <updated>2009-07-09T20:56:20.871Z</updated>
138
+ <author>
139
+ <name>Constant Contact</name>
140
+ </author>
141
+ <content type="application/vnd.ctct+xml">
142
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/43">
143
+ <EmailAddress>shaylee@baumbach.co.uk</EmailAddress>
144
+ <Name>Powlowski, Monroe</Name>
145
+ </ContactListMember>
146
+ </content>
147
+ </entry>
148
+ <entry>
149
+ <link href="/ws/customers/recordkick/lists/2/members/42" rel="edit" />
150
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/42</id>
151
+ <title type="text">Contact: ebony@nikolaus.name</title>
152
+ <updated>2009-07-09T20:56:20.871Z</updated>
153
+ <author>
154
+ <name>Constant Contact</name>
155
+ </author>
156
+ <content type="application/vnd.ctct+xml">
157
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/42">
158
+ <EmailAddress>ebony@nikolaus.name</EmailAddress>
159
+ <Name>Stroman, Ephraim</Name>
160
+ </ContactListMember>
161
+ </content>
162
+ </entry>
163
+ <entry>
164
+ <link href="/ws/customers/recordkick/lists/2/members/41" rel="edit" />
165
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/41</id>
166
+ <title type="text">Contact: myron@schultz.co.uk</title>
167
+ <updated>2009-07-09T20:56:20.871Z</updated>
168
+ <author>
169
+ <name>Constant Contact</name>
170
+ </author>
171
+ <content type="application/vnd.ctct+xml">
172
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/41">
173
+ <EmailAddress>myron@schultz.co.uk</EmailAddress>
174
+ <Name>Schmidt, Itzel</Name>
175
+ </ContactListMember>
176
+ </content>
177
+ </entry>
178
+ <entry>
179
+ <link href="/ws/customers/recordkick/lists/2/members/40" rel="edit" />
180
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/40</id>
181
+ <title type="text">Contact: eldon@mclaughlinwiza.ca</title>
182
+ <updated>2009-07-09T20:56:20.871Z</updated>
183
+ <author>
184
+ <name>Constant Contact</name>
185
+ </author>
186
+ <content type="application/vnd.ctct+xml">
187
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/40">
188
+ <EmailAddress>eldon@mclaughlinwiza.ca</EmailAddress>
189
+ <Name>Schmidt, Pablo</Name>
190
+ </ContactListMember>
191
+ </content>
192
+ </entry>
193
+ <entry>
194
+ <link href="/ws/customers/recordkick/lists/2/members/39" rel="edit" />
195
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/39</id>
196
+ <title type="text">Contact: angus.dicki@oconnerconnelly.uk</title>
197
+ <updated>2009-07-09T20:56:20.872Z</updated>
198
+ <author>
199
+ <name>Constant Contact</name>
200
+ </author>
201
+ <content type="application/vnd.ctct+xml">
202
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/39">
203
+ <EmailAddress>angus.dicki@oconnerconnelly.uk</EmailAddress>
204
+ <Name>Ryan, Brook</Name>
205
+ </ContactListMember>
206
+ </content>
207
+ </entry>
208
+ <entry>
209
+ <link href="/ws/customers/recordkick/lists/2/members/38" rel="edit" />
210
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/38</id>
211
+ <title type="text">Contact: delphia_bashirian@kerluke.com</title>
212
+ <updated>2009-07-09T20:56:20.872Z</updated>
213
+ <author>
214
+ <name>Constant Contact</name>
215
+ </author>
216
+ <content type="application/vnd.ctct+xml">
217
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/38">
218
+ <EmailAddress>delphia_bashirian@kerluke.com</EmailAddress>
219
+ <Name>Waters, Micheal</Name>
220
+ </ContactListMember>
221
+ </content>
222
+ </entry>
223
+ <entry>
224
+ <link href="/ws/customers/recordkick/lists/2/members/37" rel="edit" />
225
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/37</id>
226
+ <title type="text">Contact: tess@strosin.uk</title>
227
+ <updated>2009-07-09T20:56:20.872Z</updated>
228
+ <author>
229
+ <name>Constant Contact</name>
230
+ </author>
231
+ <content type="application/vnd.ctct+xml">
232
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/37">
233
+ <EmailAddress>tess@strosin.uk</EmailAddress>
234
+ <Name>Bruen, Brody</Name>
235
+ </ContactListMember>
236
+ </content>
237
+ </entry>
238
+ <entry>
239
+ <link href="/ws/customers/recordkick/lists/2/members/36" rel="edit" />
240
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/36</id>
241
+ <title type="text">Contact: einar_oconner@smithamchamplin.name</title>
242
+ <updated>2009-07-09T20:56:20.873Z</updated>
243
+ <author>
244
+ <name>Constant Contact</name>
245
+ </author>
246
+ <content type="application/vnd.ctct+xml">
247
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/36">
248
+ <EmailAddress>einar_oconner@smithamchamplin.name</EmailAddress>
249
+ <Name>Lebsack, Darion</Name>
250
+ </ContactListMember>
251
+ </content>
252
+ </entry>
253
+ <entry>
254
+ <link href="/ws/customers/recordkick/lists/2/members/35" rel="edit" />
255
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/35</id>
256
+ <title type="text">Contact: ashley@gutmann.com</title>
257
+ <updated>2009-07-09T20:56:20.873Z</updated>
258
+ <author>
259
+ <name>Constant Contact</name>
260
+ </author>
261
+ <content type="application/vnd.ctct+xml">
262
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/35">
263
+ <EmailAddress>ashley@gutmann.com</EmailAddress>
264
+ <Name>Abshire, Litzy</Name>
265
+ </ContactListMember>
266
+ </content>
267
+ </entry>
268
+ <entry>
269
+ <link href="/ws/customers/recordkick/lists/2/members/34" rel="edit" />
270
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/34</id>
271
+ <title type="text">Contact: declan@bernier.info</title>
272
+ <updated>2009-07-09T20:56:20.873Z</updated>
273
+ <author>
274
+ <name>Constant Contact</name>
275
+ </author>
276
+ <content type="application/vnd.ctct+xml">
277
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/34">
278
+ <EmailAddress>declan@bernier.info</EmailAddress>
279
+ <Name>Jones, Nicholas</Name>
280
+ </ContactListMember>
281
+ </content>
282
+ </entry>
283
+ <entry>
284
+ <link href="/ws/customers/recordkick/lists/2/members/33" rel="edit" />
285
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/33</id>
286
+ <title type="text">Contact: abigale.ferry@erdman.biz</title>
287
+ <updated>2009-07-09T20:56:20.874Z</updated>
288
+ <author>
289
+ <name>Constant Contact</name>
290
+ </author>
291
+ <content type="application/vnd.ctct+xml">
292
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/33">
293
+ <EmailAddress>abigale.ferry@erdman.biz</EmailAddress>
294
+ <Name>Beahan, Efrain</Name>
295
+ </ContactListMember>
296
+ </content>
297
+ </entry>
298
+ <entry>
299
+ <link href="/ws/customers/recordkick/lists/2/members/32" rel="edit" />
300
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/32</id>
301
+ <title type="text">Contact: lizeth@grimesrutherford.us</title>
302
+ <updated>2009-07-09T20:56:20.874Z</updated>
303
+ <author>
304
+ <name>Constant Contact</name>
305
+ </author>
306
+ <content type="application/vnd.ctct+xml">
307
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/32">
308
+ <EmailAddress>lizeth@grimesrutherford.us</EmailAddress>
309
+ <Name>Swaniawski, John</Name>
310
+ </ContactListMember>
311
+ </content>
312
+ </entry>
313
+ <entry>
314
+ <link href="/ws/customers/recordkick/lists/2/members/31" rel="edit" />
315
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/31</id>
316
+ <title type="text">Contact: dallin@gutkowskiokeefe.ca</title>
317
+ <updated>2009-07-09T20:56:20.874Z</updated>
318
+ <author>
319
+ <name>Constant Contact</name>
320
+ </author>
321
+ <content type="application/vnd.ctct+xml">
322
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/31">
323
+ <EmailAddress>dallin@gutkowskiokeefe.ca</EmailAddress>
324
+ <Name>Block, Ewell</Name>
325
+ </ContactListMember>
326
+ </content>
327
+ </entry>
328
+ <entry>
329
+ <link href="/ws/customers/recordkick/lists/2/members/30" rel="edit" />
330
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/30</id>
331
+ <title type="text">Contact: amara@schinner.us</title>
332
+ <updated>2009-07-09T20:56:20.875Z</updated>
333
+ <author>
334
+ <name>Constant Contact</name>
335
+ </author>
336
+ <content type="application/vnd.ctct+xml">
337
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/30">
338
+ <EmailAddress>amara@schinner.us</EmailAddress>
339
+ <Name>Nikolaus, Lewis</Name>
340
+ </ContactListMember>
341
+ </content>
342
+ </entry>
343
+ <entry>
344
+ <link href="/ws/customers/recordkick/lists/2/members/29" rel="edit" />
345
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/29</id>
346
+ <title type="text">Contact: adonis@boehm.co.uk</title>
347
+ <updated>2009-07-09T20:56:20.875Z</updated>
348
+ <author>
349
+ <name>Constant Contact</name>
350
+ </author>
351
+ <content type="application/vnd.ctct+xml">
352
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/29">
353
+ <EmailAddress>adonis@boehm.co.uk</EmailAddress>
354
+ <Name>Kozey, Lesley</Name>
355
+ </ContactListMember>
356
+ </content>
357
+ </entry>
358
+ <entry>
359
+ <link href="/ws/customers/recordkick/lists/2/members/28" rel="edit" />
360
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/28</id>
361
+ <title type="text">Contact: mitchell@weimann.uk</title>
362
+ <updated>2009-07-09T20:56:20.875Z</updated>
363
+ <author>
364
+ <name>Constant Contact</name>
365
+ </author>
366
+ <content type="application/vnd.ctct+xml">
367
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/28">
368
+ <EmailAddress>mitchell@weimann.uk</EmailAddress>
369
+ <Name>Ratke, Columbus</Name>
370
+ </ContactListMember>
371
+ </content>
372
+ </entry>
373
+ <entry>
374
+ <link href="/ws/customers/recordkick/lists/2/members/27" rel="edit" />
375
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/27</id>
376
+ <title type="text">Contact: hazel@hirthe.biz</title>
377
+ <updated>2009-07-09T20:56:20.876Z</updated>
378
+ <author>
379
+ <name>Constant Contact</name>
380
+ </author>
381
+ <content type="application/vnd.ctct+xml">
382
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/27">
383
+ <EmailAddress>hazel@hirthe.biz</EmailAddress>
384
+ <Name>Ondricka, Marcia</Name>
385
+ </ContactListMember>
386
+ </content>
387
+ </entry>
388
+ <entry>
389
+ <link href="/ws/customers/recordkick/lists/2/members/26" rel="edit" />
390
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/26</id>
391
+ <title type="text">Contact: floyd_nikolaus@borerjohnson.uk</title>
392
+ <updated>2009-07-09T20:56:20.876Z</updated>
393
+ <author>
394
+ <name>Constant Contact</name>
395
+ </author>
396
+ <content type="application/vnd.ctct+xml">
397
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/26">
398
+ <EmailAddress>floyd_nikolaus@borerjohnson.uk</EmailAddress>
399
+ <Name>Mann, Abraham</Name>
400
+ </ContactListMember>
401
+ </content>
402
+ </entry>
403
+ <entry>
404
+ <link href="/ws/customers/recordkick/lists/2/members/25" rel="edit" />
405
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/25</id>
406
+ <title type="text">Contact: fabiola.rogahn@herzogkling.info</title>
407
+ <updated>2009-07-09T20:56:20.876Z</updated>
408
+ <author>
409
+ <name>Constant Contact</name>
410
+ </author>
411
+ <content type="application/vnd.ctct+xml">
412
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/25">
413
+ <EmailAddress>fabiola.rogahn@herzogkling.info</EmailAddress>
414
+ <Name>Ritchie, Dashawn</Name>
415
+ </ContactListMember>
416
+ </content>
417
+ </entry>
418
+ <entry>
419
+ <link href="/ws/customers/recordkick/lists/2/members/24" rel="edit" />
420
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/24</id>
421
+ <title type="text">Contact: telly.grady@reilly.co.uk</title>
422
+ <updated>2009-07-09T20:56:20.876Z</updated>
423
+ <author>
424
+ <name>Constant Contact</name>
425
+ </author>
426
+ <content type="application/vnd.ctct+xml">
427
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/24">
428
+ <EmailAddress>telly.grady@reilly.co.uk</EmailAddress>
429
+ <Name>Bernier, Edd</Name>
430
+ </ContactListMember>
431
+ </content>
432
+ </entry>
433
+ <entry>
434
+ <link href="/ws/customers/recordkick/lists/2/members/23" rel="edit" />
435
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/23</id>
436
+ <title type="text">Contact: lonie.lueilwitz@hagenes.com</title>
437
+ <updated>2009-07-09T20:56:20.877Z</updated>
438
+ <author>
439
+ <name>Constant Contact</name>
440
+ </author>
441
+ <content type="application/vnd.ctct+xml">
442
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/23">
443
+ <EmailAddress>lonie.lueilwitz@hagenes.com</EmailAddress>
444
+ <Name>Schowalter, Felton</Name>
445
+ </ContactListMember>
446
+ </content>
447
+ </entry>
448
+ <entry>
449
+ <link href="/ws/customers/recordkick/lists/2/members/22" rel="edit" />
450
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/22</id>
451
+ <title type="text">Contact: lila.predovic@baumbach.name</title>
452
+ <updated>2009-07-09T20:56:20.877Z</updated>
453
+ <author>
454
+ <name>Constant Contact</name>
455
+ </author>
456
+ <content type="application/vnd.ctct+xml">
457
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/22">
458
+ <EmailAddress>lila.predovic@baumbach.name</EmailAddress>
459
+ <Name>Predovic, Cristopher</Name>
460
+ </ContactListMember>
461
+ </content>
462
+ </entry>
463
+ <entry>
464
+ <link href="/ws/customers/recordkick/lists/2/members/21" rel="edit" />
465
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/21</id>
466
+ <title type="text">Contact: amparo@robel.biz</title>
467
+ <updated>2009-07-09T20:56:20.877Z</updated>
468
+ <author>
469
+ <name>Constant Contact</name>
470
+ </author>
471
+ <content type="application/vnd.ctct+xml">
472
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/21">
473
+ <EmailAddress>amparo@robel.biz</EmailAddress>
474
+ <Name>Steuber, Stuart</Name>
475
+ </ContactListMember>
476
+ </content>
477
+ </entry>
478
+ <entry>
479
+ <link href="/ws/customers/recordkick/lists/2/members/20" rel="edit" />
480
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/20</id>
481
+ <title type="text">Contact: fidel@joneswindler.co.uk</title>
482
+ <updated>2009-07-09T20:56:20.878Z</updated>
483
+ <author>
484
+ <name>Constant Contact</name>
485
+ </author>
486
+ <content type="application/vnd.ctct+xml">
487
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/20">
488
+ <EmailAddress>fidel@joneswindler.co.uk</EmailAddress>
489
+ <Name>Wehner, Jennyfer</Name>
490
+ </ContactListMember>
491
+ </content>
492
+ </entry>
493
+ <entry>
494
+ <link href="/ws/customers/recordkick/lists/2/members/19" rel="edit" />
495
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/19</id>
496
+ <title type="text">Contact: anastasia@nader.biz</title>
497
+ <updated>2009-07-09T20:56:20.878Z</updated>
498
+ <author>
499
+ <name>Constant Contact</name>
500
+ </author>
501
+ <content type="application/vnd.ctct+xml">
502
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/19">
503
+ <EmailAddress>anastasia@nader.biz</EmailAddress>
504
+ <Name>Effertz, Frankie</Name>
505
+ </ContactListMember>
506
+ </content>
507
+ </entry>
508
+ <entry>
509
+ <link href="/ws/customers/recordkick/lists/2/members/18" rel="edit" />
510
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/18</id>
511
+ <title type="text">Contact: jairo@kuhlman.biz</title>
512
+ <updated>2009-07-09T20:56:20.878Z</updated>
513
+ <author>
514
+ <name>Constant Contact</name>
515
+ </author>
516
+ <content type="application/vnd.ctct+xml">
517
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/18">
518
+ <EmailAddress>jairo@kuhlman.biz</EmailAddress>
519
+ <Name>Smitham, Roel</Name>
520
+ </ContactListMember>
521
+ </content>
522
+ </entry>
523
+ <entry>
524
+ <link href="/ws/customers/recordkick/lists/2/members/17" rel="edit" />
525
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/17</id>
526
+ <title type="text">Contact: marian@brown.biz</title>
527
+ <updated>2009-07-09T20:56:20.879Z</updated>
528
+ <author>
529
+ <name>Constant Contact</name>
530
+ </author>
531
+ <content type="application/vnd.ctct+xml">
532
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/17">
533
+ <EmailAddress>marian@brown.biz</EmailAddress>
534
+ <Name>O'Keefe, Lizeth</Name>
535
+ </ContactListMember>
536
+ </content>
537
+ </entry>
538
+ <entry>
539
+ <link href="/ws/customers/recordkick/lists/2/members/16" rel="edit" />
540
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/16</id>
541
+ <title type="text">Contact: craig@batzwalsh.biz</title>
542
+ <updated>2009-07-09T20:56:20.879Z</updated>
543
+ <author>
544
+ <name>Constant Contact</name>
545
+ </author>
546
+ <content type="application/vnd.ctct+xml">
547
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/16">
548
+ <EmailAddress>craig@batzwalsh.biz</EmailAddress>
549
+ <Name>Dibbert, Morgan</Name>
550
+ </ContactListMember>
551
+ </content>
552
+ </entry>
553
+ <entry>
554
+ <link href="/ws/customers/recordkick/lists/2/members/15" rel="edit" />
555
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/15</id>
556
+ <title type="text">Contact: herbert.fay@bergstromcronin.co.uk</title>
557
+ <updated>2009-07-09T20:56:20.879Z</updated>
558
+ <author>
559
+ <name>Constant Contact</name>
560
+ </author>
561
+ <content type="application/vnd.ctct+xml">
562
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/15">
563
+ <EmailAddress>herbert.fay@bergstromcronin.co.uk</EmailAddress>
564
+ <Name>Walker, Heaven</Name>
565
+ </ContactListMember>
566
+ </content>
567
+ </entry>
568
+ <entry>
569
+ <link href="/ws/customers/recordkick/lists/2/members/14" rel="edit" />
570
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/14</id>
571
+ <title type="text">Contact: franco.terry@barton.us</title>
572
+ <updated>2009-07-09T20:56:20.880Z</updated>
573
+ <author>
574
+ <name>Constant Contact</name>
575
+ </author>
576
+ <content type="application/vnd.ctct+xml">
577
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/14">
578
+ <EmailAddress>franco.terry@barton.us</EmailAddress>
579
+ <Name>Bednar, Daisy</Name>
580
+ </ContactListMember>
581
+ </content>
582
+ </entry>
583
+ <entry>
584
+ <link href="/ws/customers/recordkick/lists/2/members/13" rel="edit" />
585
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/13</id>
586
+ <title type="text">Contact: norene@grady.com</title>
587
+ <updated>2009-07-09T20:56:20.880Z</updated>
588
+ <author>
589
+ <name>Constant Contact</name>
590
+ </author>
591
+ <content type="application/vnd.ctct+xml">
592
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/13">
593
+ <EmailAddress>norene@grady.com</EmailAddress>
594
+ <Name>Williamson, Sylvan</Name>
595
+ </ContactListMember>
596
+ </content>
597
+ </entry>
598
+ <entry>
599
+ <link href="/ws/customers/recordkick/lists/2/members/12" rel="edit" />
600
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/12</id>
601
+ <title type="text">Contact: chesley.rowe@hansen.biz</title>
602
+ <updated>2009-07-09T20:56:20.880Z</updated>
603
+ <author>
604
+ <name>Constant Contact</name>
605
+ </author>
606
+ <content type="application/vnd.ctct+xml">
607
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/12">
608
+ <EmailAddress>chesley.rowe@hansen.biz</EmailAddress>
609
+ <Name>Schoen, Marcella</Name>
610
+ </ContactListMember>
611
+ </content>
612
+ </entry>
613
+ <entry>
614
+ <link href="/ws/customers/recordkick/lists/2/members/11" rel="edit" />
615
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/11</id>
616
+ <title type="text">Contact: esmeralda.davis@hodkiewicz.biz</title>
617
+ <updated>2009-07-09T20:56:20.881Z</updated>
618
+ <author>
619
+ <name>Constant Contact</name>
620
+ </author>
621
+ <content type="application/vnd.ctct+xml">
622
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/11">
623
+ <EmailAddress>esmeralda.davis@hodkiewicz.biz</EmailAddress>
624
+ <Name>Hudson, Isabelle</Name>
625
+ </ContactListMember>
626
+ </content>
627
+ </entry>
628
+ <entry>
629
+ <link href="/ws/customers/recordkick/lists/2/members/10" rel="edit" />
630
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/10</id>
631
+ <title type="text">Contact: yesenia@brakus.uk</title>
632
+ <updated>2009-07-09T20:56:20.881Z</updated>
633
+ <author>
634
+ <name>Constant Contact</name>
635
+ </author>
636
+ <content type="application/vnd.ctct+xml">
637
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/10">
638
+ <EmailAddress>yesenia@brakus.uk</EmailAddress>
639
+ <Name>Bogisich, Lonny</Name>
640
+ </ContactListMember>
641
+ </content>
642
+ </entry>
643
+ <entry>
644
+ <link href="/ws/customers/recordkick/lists/2/members/9" rel="edit" />
645
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/9</id>
646
+ <title type="text">Contact: dixie.vandervort@reichel.biz</title>
647
+ <updated>2009-07-09T20:56:20.881Z</updated>
648
+ <author>
649
+ <name>Constant Contact</name>
650
+ </author>
651
+ <content type="application/vnd.ctct+xml">
652
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/9">
653
+ <EmailAddress>dixie.vandervort@reichel.biz</EmailAddress>
654
+ <Name>Mosciski, Janelle</Name>
655
+ </ContactListMember>
656
+ </content>
657
+ </entry>
658
+ <entry>
659
+ <link href="/ws/customers/recordkick/lists/2/members/8" rel="edit" />
660
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/8</id>
661
+ <title type="text">Contact: clifford_towne@starkkuhic.info</title>
662
+ <updated>2009-07-09T20:56:20.881Z</updated>
663
+ <author>
664
+ <name>Constant Contact</name>
665
+ </author>
666
+ <content type="application/vnd.ctct+xml">
667
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/8">
668
+ <EmailAddress>clifford_towne@starkkuhic.info</EmailAddress>
669
+ <Name>Grimes, Barry</Name>
670
+ </ContactListMember>
671
+ </content>
672
+ </entry>
673
+ <entry>
674
+ <link href="/ws/customers/recordkick/lists/2/members/7" rel="edit" />
675
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/7</id>
676
+ <title type="text">Contact: shania.pagac@wymanwaelchi.ca</title>
677
+ <updated>2009-07-09T20:56:20.882Z</updated>
678
+ <author>
679
+ <name>Constant Contact</name>
680
+ </author>
681
+ <content type="application/vnd.ctct+xml">
682
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/7">
683
+ <EmailAddress>shania.pagac@wymanwaelchi.ca</EmailAddress>
684
+ <Name>Little, Ariel</Name>
685
+ </ContactListMember>
686
+ </content>
687
+ </entry>
688
+ <entry>
689
+ <link href="/ws/customers/recordkick/lists/2/members/6" rel="edit" />
690
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/6</id>
691
+ <title type="text">Contact: domenic_macejkovic@kutch.info</title>
692
+ <updated>2009-07-09T20:56:20.882Z</updated>
693
+ <author>
694
+ <name>Constant Contact</name>
695
+ </author>
696
+ <content type="application/vnd.ctct+xml">
697
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/6">
698
+ <EmailAddress>domenic_macejkovic@kutch.info</EmailAddress>
699
+ <Name>Miller, Antone</Name>
700
+ </ContactListMember>
701
+ </content>
702
+ </entry>
703
+ <entry>
704
+ <link href="/ws/customers/recordkick/lists/2/members/5" rel="edit" />
705
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/5</id>
706
+ <title type="text">Contact: toney_hane@browngislason.name</title>
707
+ <updated>2009-07-09T20:56:20.882Z</updated>
708
+ <author>
709
+ <name>Constant Contact</name>
710
+ </author>
711
+ <content type="application/vnd.ctct+xml">
712
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/5">
713
+ <EmailAddress>toney_hane@browngislason.name</EmailAddress>
714
+ <Name>Swaniawski, Noemi</Name>
715
+ </ContactListMember>
716
+ </content>
717
+ </entry>
718
+ <entry>
719
+ <link href="/ws/customers/recordkick/lists/2/members/4" rel="edit" />
720
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/4</id>
721
+ <title type="text">Contact: hubert@kohler.uk</title>
722
+ <updated>2009-07-09T20:56:20.883Z</updated>
723
+ <author>
724
+ <name>Constant Contact</name>
725
+ </author>
726
+ <content type="application/vnd.ctct+xml">
727
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/4">
728
+ <EmailAddress>hubert@kohler.uk</EmailAddress>
729
+ <Name>Emmerich, Lon</Name>
730
+ </ContactListMember>
731
+ </content>
732
+ </entry>
733
+ <entry>
734
+ <link href="/ws/customers/recordkick/lists/2/members/3" rel="edit" />
735
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/3</id>
736
+ <title type="text">Contact: cory.reinger@blandapredovic.com</title>
737
+ <updated>2009-07-09T20:56:20.883Z</updated>
738
+ <author>
739
+ <name>Constant Contact</name>
740
+ </author>
741
+ <content type="application/vnd.ctct+xml">
742
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/3">
743
+ <EmailAddress>cory.reinger@blandapredovic.com</EmailAddress>
744
+ <Name>Flatley, Gudrun</Name>
745
+ </ContactListMember>
746
+ </content>
747
+ </entry>
748
+ <entry>
749
+ <link href="/ws/customers/recordkick/lists/2/members/2" rel="edit" />
750
+ <id>http://api.constantcontact.com/ws/customers/recordkick/contacts/2</id>
751
+ <title type="text">Contact: bertrand_hoppe@stroman.ca</title>
752
+ <updated>2009-07-09T20:56:20.883Z</updated>
753
+ <author>
754
+ <name>Constant Contact</name>
755
+ </author>
756
+ <content type="application/vnd.ctct+xml">
757
+ <ContactListMember xmlns="http://ws.constantcontact.com/ns/1.0/" id="http://api.constantcontact.com/ws/customers/recordkick/contacts/2">
758
+ <EmailAddress>bertrand_hoppe@stroman.ca</EmailAddress>
759
+ <Name>Larson, Caterina</Name>
760
+ </ContactListMember>
761
+ </content>
762
+ </entry>
763
+ </feed>