简体   繁体   English

MailChimp Api v1.3如何将订户设置为待定

[英]MailChimp Api v1.3 how to set subscriber to pending

anyone out there still knows if its possible to set the new subscriber status to pending with Mailchimp Api v1.3 ? 还有人知道是否可以通过Mailchimp Api v1.3将新的订户状态设置为“待定”吗? the documentation is disabled/deprecated. 该文档已禁用/不建议使用。

the payload for a new subscriber actually is: 新订户的有效负载实际上是:

$payload = array('email_address' => $this->email,
                'merge_vars' => $this->merge, 
                'email_type' => $this->emailType,
                'double_optin' => $this->doubleOptin,
                'update_existing' => $this->updateExisting,
                'replace_interests' => $this->replaceInterests,
                'send_welcome' => $this->sendWelcome,);

i tried to just add 我试图添加

"status" => "pending"

like with the Api v3, but this did not work. 与Api v3相似,但这没有用。 i would like to check the docs if the naming was different back then but yeah... 我想检查一下文档,当时的命名是否有所不同,但是是的...

thanks for reading by, help is much appreciated, have a nice one 感谢您的阅读,非常感谢您的帮助,祝您生活愉快

these is no solution to this. 这些不是解决方案。 the only way was to actually upgrade to a package supporting MailChimp Api v3 (or doing the implementation yourself) 唯一的方法是实际升级到支持MailChimp Api v3的软件包(或自己进行实施)

have a nice one. 有一个不错的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM