How to create a campaign using mailchimp v3.0

前端 未结 3 1877
旧时难觅i
旧时难觅i 2021-01-06 18:54

I am trying to create a new campaign using MailChimp API v3.0 but I do not see any method that allows me to make this in the resources of the API. Does anyone know how I ca

3条回答
  •  一整个雨季
    2021-01-06 19:30

    Send a POST Request to this address

    "https://us15.api.mailchimp.com/3.0/campaigns?apikey=****"

    with following Content in Raw data attachment.

    {
        "type":"regular",
    "list_id":"****",
    "subject_line":"Your Purchase Receipt",
    "reply_to":"Email@email.com",
    "from_name":"Customer Service",
    "settings":{"subject_line":"Your Purchase Receipt","reply_to":"Email@email.com","from_name":"Customer Service"}
    
    }
    

    for more please refer to following documentation. http://developer.mailchimp.com/documentation/mailchimp/reference/campaigns/#create-post_campaigns

提交回复
热议问题