使用 Mailchimp.NET 删除列表
Delete Lists with Mailchimp.NET
我正在使用以下内容:
https://github.com/danesparza/MailChimp.NET
但是我没有找到删除列表的方法。我不想单独查看和删除数百封电子邮件 - 我想完全删除一个列表,然后创建一个新的。
如何从 .NET 中删除 MailChimp 列表?
您使用的库似乎是针对已弃用的 v2.0 MailChimp API。似乎没有 Delete List endpoint available in the 2.0 endpoints. However, in the readme of the library you've linked to, there's a link to a v3.0 wrapper which could have that feature. V3.0 of the MailChimp API has a Delete List endpoint 所以除非你想升级到那个端点,否则你可能需要手动取消订阅。
我正在使用以下内容:
https://github.com/danesparza/MailChimp.NET
但是我没有找到删除列表的方法。我不想单独查看和删除数百封电子邮件 - 我想完全删除一个列表,然后创建一个新的。
如何从 .NET 中删除 MailChimp 列表?
您使用的库似乎是针对已弃用的 v2.0 MailChimp API。似乎没有 Delete List endpoint available in the 2.0 endpoints. However, in the readme of the library you've linked to, there's a link to a v3.0 wrapper which could have that feature. V3.0 of the MailChimp API has a Delete List endpoint 所以除非你想升级到那个端点,否则你可能需要手动取消订阅。