Reputation: 593
I'm trying to use the Mailchimp API v3 to add tags to multiple subscribers. According to the Mailchimp API documentation, I need the segment id of the tag to do this. Where can I find this?
Upvotes: 7
Views: 6969
Reputation: 211
I think I could find more simple way to find segment_id
.
segment_id
from URL. URL would be like
https://us20.admin.mailchimp.com/lists/segments/view-members?id=xxxx&segment_id=xxxxUpvotes: 8
Reputation: 593
Found it.
1) Log into the Mailchimp API Playground
2) Click Lists, then Subresources, then segments.
3) Click on the relevant segment.
4) You'll see: "id: {your_segment_id}" under Details.
Upvotes: 11