Is there anything that I missed to enable the "modified since" behavior in the 2.0 API?
Thanks you in advance for your attention and answer, best regards,
Luc Sorel, PhD - R&D at Podbox
So definitely not a good substitute for the 1.3 listMembers method. Thanks though for the hints you provided! :)
Thanks to the respondents for their inputs, and hopefully the API will evolve to make it backward compatible.
$lid = 'efed60d431';$status = 'subscribed';$opts = array( 'start' => 0, 'limit' => 100, 'sort_field' => 'EMAIL', 'sort_dir' => 'ASC', 'segment' => array( 'match' => 'all', 'conditions' => array( array( 'field' => 'date', 'op' => 'gt', 'value' => '2013-11-19') ) ) );
$api = new Mailchimp($apikey);$members = $api->lists->members($lid,$status,$opts);
print_r($members);Hey again, Luc --Appreciate the feedback.
I'm not sure I was clear on exactly what I meant by using a segment. With the lists/member call, you can use a segment based on "date" for date added or "last_changed" for segmenting based on the last time a subscriber's profile was updated. Using that in conjunction with the lists/members call will let you do something similar to the "since" parameter. For example, if I wanted to grab a list of all of the subscribers who had been added since November 19th in my list, I'd use the following:
[...]