我有一个Mailchimp RSS活动,它在网站上读取RSS提要,并且每天设置一次.我想在向Feed添加项目后以编程方式发送此广告系列.
我正在使用PerceptiveMCAPI和我的代码来触发广告系列
campaignSendNowInput campaignSendNowInput = new campaignSendNowInput(apiKey, campaignKey);
campaignSendNow campaignSendNow = new campaignSendNow(campaignSendNowInput);
campaignSendNowOutput campaignSendNowOutput = campaignSendNow.Execute();
Run Code Online (Sandbox Code Playgroud)
我收到的错误看起来像
"Error Code: 313, Message: This Campaign has already been sent and can not be sent again."
Run Code Online (Sandbox Code Playgroud)
关于什么会导致这个的任何想法?