我到处走走,但找不到通过 api v3.0 添加自定义合并标签的任何线索。文档似乎很差而且很神秘。
我在以前的版本中看到,可以通过listMergeVarAdd()
方法来完成。
我想要做的是merge_tags
动态添加任何内容。
如何merge_tags
通过 mailchimp api 3.0 添加自定义以在自定义订阅表单中使用?
我到处走走,但找不到通过 api v3.0 添加自定义合并标签的任何线索。文档似乎很差而且很神秘。
我在以前的版本中看到,可以通过listMergeVarAdd()
方法来完成。
我想要做的是merge_tags
动态添加任何内容。
如何merge_tags
通过 mailchimp api 3.0 添加自定义以在自定义订阅表单中使用?
由于 v3.0 是 RESTful,您可以POST
调用/3.0/lists/{list_id}/merge-fields
端点。您传递的数据应与List Merge Field Instance schema匹配。
这是经过一些研究后的示例,可能有人会发现它有用。
这是使用这里提供的 VATPS Wrapper https://github.com/vatps/mailchimp-rest-api
$api_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-usx";
$mc = new MailChimp();
$mc->setApiKey($api_key);
// Create Custom Merge Tags - Example
$result = $mc->post('/lists/{list-id}/merge-fields', array(
"tag" => "CUSTOM_SST",
"required" => false, // or true to set is as required
"name" => "Custom Field",
"type" => "text", // text, number, address, phone, email, date, url, imageurl, radio, dropdown, checkboxes, birthday, zip
"default_value" => "", // anything
"public" => true, // or false to set it as not
"display_order" => 2,
"help_text" => "I try to help you!"
));
print_r($result);
// Check If Merge Tags Already Exists - Example
$result = $mc->get('/lists/{list_id}/merge-fields');
print_r($result);