brandonseydel/MailChimp.Net

Is there a way to tag multiple contacts in bulk?

Closed this issue · 1 comments

Is there a way to tag multiple contacts in bulk?

I only see mailChimpManager.Members.AddTagsAsync(string listId, string emailAddressOrHash, Tags tags) which only is for one contact...

oops.. never mind:
var listMembers = await mailChimpManager.Members.GetAllAsync(listId).ConfigureAwait(false);
foreach (MailChimp.Net.Models.Member oneListMember in listMembers)
{
List tagList = oneListMember.Tags;
}