使用 asp.net 包装器从 mailchimp 删除订阅者

发布于 2024-12-18 10:26:59 字数 76 浏览 0 评论 0原文

我如何使用asp.net API从mailchimp列表中删除订阅者,实际上我发现可以通过API添加订阅者,这会很奇怪,我无法删除订阅者!

How can I delete subscriber from mailchimp list using the asp.net API, actually i found that it is possible to add subscriber through the API it is gonna be so weird that I can't delete subscriber!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨与橙与城 2024-12-25 10:26:59

使用最新的 API (1.3),您可以使用以下方法从列表中删除订阅者:

// Unsubscribe the given email address from the list 
listUnsubscribe(string apikey, string id, string email_address, boolean delete_member,
     boolean send_goodbye, boolean send_notify)

请参阅 MailChimp API。

Using the latest API (1.3) you can delete a subscriber from the list using:

// Unsubscribe the given email address from the list 
listUnsubscribe(string apikey, string id, string email_address, boolean delete_member,
     boolean send_goodbye, boolean send_notify)

See MailChimp API.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文