MailChimp API、组、段和列表
MailChimp API, Groups, Segments, and Lists
我有几个关于 MailChimp 的问题,正在寻找 "best practices" 比我更了解的人的回答。我在 MailChimp 的特定列表中有数百名订阅者。我想做的基本上是 "classify" 根据匹配计算将它们分成不同的组或部分(我不知道是哪个)(1 到 4 周前购买,5-10 周前购买,等等)。
我们想创建特定的电子邮件活动,然后根据数学统计来吸引订阅者。我不确定我应该使用 "Groups" 还是 "Segments"。我们想要 运行 每周一次的计时工作来重新分类每个人。因此,我们想首先清除(不是删除细分或组或取消订阅用户)组或细分,然后开始遍历我们的用户群并执行 API 调用以将它们重新分类到我们需要的位置。
谁能帮我理解一下?我已经阅读了知识库文章 (http://kb.mailchimp.com/lists/groups-and-segments/about-segments-and-groups),但我仍然不清楚我应该如何处理这个问题(我认为是组还是细分)。
如有任何指导,我们将不胜感激。
我建议您为每个 "match-calculation" 创建一个组,您将有一个用于 "purchased between 1 and 4 weeks ago" 的组,还有一个用于“5-10 周前”的组,然后,您将创建每个组的一个段(列表->管理订阅者->创建段)。创建广告系列时,您将能够 select 细分。
So we would like to first clear (not delete segments or groups or
unsubsribe users) the group or segment and then start looping through
our user base and do API calls to reclassify them where we need them
to be.
您不必在执行 cron 作业时清除段,您可以为每个用户更新您的组(这将更新每个段中的成员)。这是更新订阅者的示例。
( POST request to
https://us8.api.mailchimp.com/2.0/ lists/update-member )
{
"apikey":"Key"
"id":"listID",
"email":{
"email":"email@domain.com"
},
"merge_vars":{
"GROUPINGS":[
{
"id":groupingsID,
"groups":{
"four_weeks":"four_weeks",
"ten_weeks":"ten_weeks"
}
}
]
},
"email_type":"html"
}
上面我将订户添加到两个组(从而添加到两个部分)。
天使
我有几个关于 MailChimp 的问题,正在寻找 "best practices" 比我更了解的人的回答。我在 MailChimp 的特定列表中有数百名订阅者。我想做的基本上是 "classify" 根据匹配计算将它们分成不同的组或部分(我不知道是哪个)(1 到 4 周前购买,5-10 周前购买,等等)。
我们想创建特定的电子邮件活动,然后根据数学统计来吸引订阅者。我不确定我应该使用 "Groups" 还是 "Segments"。我们想要 运行 每周一次的计时工作来重新分类每个人。因此,我们想首先清除(不是删除细分或组或取消订阅用户)组或细分,然后开始遍历我们的用户群并执行 API 调用以将它们重新分类到我们需要的位置。
谁能帮我理解一下?我已经阅读了知识库文章 (http://kb.mailchimp.com/lists/groups-and-segments/about-segments-and-groups),但我仍然不清楚我应该如何处理这个问题(我认为是组还是细分)。
如有任何指导,我们将不胜感激。
我建议您为每个 "match-calculation" 创建一个组,您将有一个用于 "purchased between 1 and 4 weeks ago" 的组,还有一个用于“5-10 周前”的组,然后,您将创建每个组的一个段(列表->管理订阅者->创建段)。创建广告系列时,您将能够 select 细分。
So we would like to first clear (not delete segments or groups or unsubsribe users) the group or segment and then start looping through our user base and do API calls to reclassify them where we need them to be.
您不必在执行 cron 作业时清除段,您可以为每个用户更新您的组(这将更新每个段中的成员)。这是更新订阅者的示例。
( POST request to https://us8.api.mailchimp.com/2.0/ lists/update-member )
{
"apikey":"Key"
"id":"listID",
"email":{
"email":"email@domain.com"
},
"merge_vars":{
"GROUPINGS":[
{
"id":groupingsID,
"groups":{
"four_weeks":"four_weeks",
"ten_weeks":"ten_weeks"
}
}
]
},
"email_type":"html"
}
上面我将订户添加到两个组(从而添加到两个部分)。
天使