我正在使用基于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"
}
}
}
请在这方面指导我