我有一个Mailchimp RSS广告系列,可以在网站上读取RSS Feed,并且每天设置一次。我想在向Feed添加项目后以编程方式发送此广告系列。
我正在使用PerceptiveMCAPI,我的代码用于触发广告系列
campaignSendNowInput campaignSendNowInput = new campaignSendNowInput(apiKey, campaignKey);
campaignSendNow campaignSendNow = new campaignSendNow(campaignSendNowInput);
campaignSendNowOutput campaignSendNowOutput = campaignSendNow.Execute();
我收到的错误似乎是
"Error Code: 313, Message: This Campaign has already been sent and can not be sent again."
关于导致这种情况的任何想法?