I have a Mailchimp RSS campaign that reads the RSS feed on a website and is installed once a day. I want to send this campaign programmatically after adding an item to the feed.
I am using PerceptiveMCAPI, and my code to run the campaign is
campaignSendNowInput campaignSendNowInput = new campaignSendNowInput(apiKey, campaignKey);
campaignSendNow campaignSendNow = new campaignSendNow(campaignSendNowInput);
campaignSendNowOutput campaignSendNowOutput = campaignSendNow.Execute();
Received error looks like
"Error Code: 313, Message: This Campaign has already been sent and can not be sent again."
Any ideas on what could be causing this?
lukek source
share