quarky
quarky

Reputation: 748

Get Mailchimp list of unsubscribed users for the last month from API

I want to receive the list of unsubscribed users from Mailchimp mailing list from Marketing API. I use this endpoint:

https://{{dc}}.api.mailchimp.com/3.0/lists/{{list_id}}/activity

but it returns only the count of subscribed/unsubscribed users. I want also to retrieve email addresses of all unsubscribed users.

Endpoints with campaigns reports doesn't seems to retrieve such a data too.

Is this possible? Is there any other endpoint that can return my demands? Also it would be helpful if the results will be trimmed by the date - in my case last month.

Thanks for help.

Upvotes: 1

Views: 234

Answers (1)

quarky
quarky

Reputation: 748

OK I have figured it out. It was this endpoint:

https://{{dc}}.api.mailchimp.com/3.0//lists/{list_id}/members?status=unsubscribed&since_last_changed={{ISO_DATE}}

Upvotes: 1

Related Questions