MailChimp API V2需要有关模板的帮助

时间:2014-06-29 02:32:47

标签: api templates mailchimp

我正在使用基于REST的MailChimp API 2.0版。我正在尝试使用campaign / create API方法制作广告系列。我有一个使用内置设计器设计的模板。在请求中,我在创建广告系列时指定了此模板的模板ID。有没有办法在使用API​​创建广告系列时在模板正文中发送html?我已经尝试了以下代码,但它有效,但我无法在创建广告系列时在模板中输入我的自定义html

{
    "apikey": "my_key",
    "type": "regular",
    "options": {
        "list_id": "d1c5306a1f",
        "subject": "Welcome",
        "from_email": "my@email.com",
        "from_name": "Fawad Rashid",
        "to_name": "Subscriber",
        "template_id": 94425,
        "inline_css": true,
        "generate_text": true
    },
    "content": {
        "html": "example html",
        "sections": {
            "text": "test"
        }
    }
}

请在这方面指导我

0 个答案:

没有答案