使用MailChimp API V3.0创建广告系列。
我想创建一个发送给具有特定兴趣的用户的广告系列。看起来这在文档中是可行的,但我已经尝试了我能想到的每一种排列。只要我省略了segment_ops成员,我就可以创建广告系列。有没有人有PHP代码的例子呢?
由于您在通过API设置用户兴趣时未包含兴趣类别,因此感兴趣的处理似乎很奇怪。我不确定这会如何影响广告系列的制作。
答案 0 :(得分:15)
我已经让这个工作了,虽然你无法从当前的文档中获得它,这些文档没有列出'兴趣'condition_type或者可能的'op'值。
兴趣必须按兴趣类别分组(在UI的某些部分称为“组”)。
以下是收件人数组的segment_opts成员的JSON:
"segment_opts": {
"match": "any",
"conditions": [{
"condition_type": "Interests",
"field": "interests-31f7aec0ec",
"op": "interestcontains",
"value": ["a9014571b8", "5e824ac953"]
}]
}
这是带有注释的PHP数组版本。 'match'成员引用'条件'数组中的规则。该段可以匹配任何,所有或任何条件。此示例只有一个条件,但其他条件可以作为附加数组添加到'conditions'数组中:
$segment_opts = array(
'match' => 'any', // or 'all' or 'none'
'conditions' => array (
array(
'condition_type' => 'Interests', // note capital I
'field' => 'interests-31f7aec0ec', // ID of interest category
// This ID is tricky: it is
// the string "interests-" +
// the ID of interest category
// that you get from MailChimp
// API (31f7aec0ec)
'op' => 'interestcontains', // or interestcontainsall, interestcontainsnone
'value' => array (
'a9014571b8', // ID of interest in that category
'5e824ac953' // ID of another interest in that category
)
)
)
);
答案 1 :(得分:0)
您也可以发送到已保存的细分受众群。问题在于,segment_id必须是int。我在db中将此值保存为varchar,除非转换为int,否则它将无效。
(我正在使用use \ DrewM \ MailChimp \ MailChimp;)
$segment_id = (int) $methodThatGetsMySegmentID;
$campaign = $MailChimp->post("campaigns", [
'type' => 'regular',
'recipients' => array(
'list_id' => 'abc123yourListID',
'segment_opts' => array(
'saved_segment_id' => $segment_id,
),
),
'settings' => array(
'subject_line' => 'A New Article was Posted',
'from_name' => 'From Name',
'reply_to' => 'info@example.com',
'title' => 'New Article Notification'
)
]);