I am using the .Net API Library and I can not seem to locate the ID for the newly created campaign. Maybe I am incorrectly assuming things but I figure once I use: ConstantContactBO.Entities.EmailCampaign createdCampaign = ConstantContactUtility.Utility.CreateNewEmailCampaign(authenticationData, campaign); I should have access to the newly created campaign ID. I have checked the createdCampaign object but it is always null and I have also checked the object used to create the new campaign and its ID remained null. The code I have written works since I can view the created campaign when I log into my account. Is there something I'm missing here? I need to retrieve the new campaign ID to schedule when to send out the emails. This all needs to take place in the code-behind. Thanks for your help.
... View more