I am using MailChimp API v1/v2. In that version, I could get member-info
for multiple members by providing their emails to member-info
API
Now, I want to upgrade to v3, however, I am unable to find the equivalent API endpoint for member-info
in v3. I can't use /batches
operation, as I will be calling the API on the fly and will show the response to my users.
Any pointers/suggestions?
There is no way to look up multiple list members with v3 without using the batch API, but you can get each member one by one using this endpoint:
GET /lists/{list_id}/members/{subscriber_hash}
Here's an example using the Gibbon gem: