Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
264 views
in Technique[技术] by (71.8m points)

How to get total members with certain tags on mailchimp API v3.0?

Is there a way to return the total members in a specific list that have a certain tag?

I'm trying to do this without using custom logic outside of the API call.

I can get the member count of a certain list by running: https://usXX.api.mailchimp.com/3.0/lists/{ListId}?fields=stats.member_count, but I'm having trouble getting count's for specific tags within a list.

question from:https://stackoverflow.com/questions/65926646/how-to-get-total-members-with-certain-tags-on-mailchimp-api-v3-0

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I dont believe this is possible over the API, without building custom logic. The only way to look at tags is, GET /lists/{list_id}/members/{subscriber_hash}/tags. So really you would need to first get the list members, then loop through and look at the tags for each member of the list.

Tags are associated with members of a list and not the list itself.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...