ruby-mailchimp 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/mail_chimp.rb +1 -1
- metadata +1 -1
data/lib/mail_chimp.rb
CHANGED
@@ -100,7 +100,7 @@ class MailChimp
|
|
100
100
|
client.call("listUpdateMember", uid, list_id, email, merge_vars, email_type, replace_interests)
|
101
101
|
end
|
102
102
|
|
103
|
-
def listMembers(uid, list_id, status, start=
|
103
|
+
def listMembers(uid, list_id, status, start=0, limit=100)
|
104
104
|
raise StandardError("Not Loggged in or invalid UID.") if (uid.nil?)
|
105
105
|
client = XMLRPC::Client.new2(API_URL) if client.nil?
|
106
106
|
client.call("listMembers", uid, list_id, status, start, limit)
|