Is there a way to tag multiple contacts in bulk?
Closed this issue · 1 comments
guipower commented
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...
guipower commented
oops.. never mind:
var listMembers = await mailChimpManager.Members.GetAllAsync(listId).ConfigureAwait(false);
foreach (MailChimp.Net.Models.Member oneListMember in listMembers)
{
List tagList = oneListMember.Tags;
}