I'm using "Google Api Adowrds Dotnet" library and trying to generate/ download structure report for a few dozens of accounts. Here is the code:
ReportService service = (ReportService)user.GetService(AdWordsService.v13.ReportService); DefinedReportJob reportJob = new v13.DefinedReportJob(); reportJob.name = "Export structure ads report (fixstatus=Completed)"; reportJob.selectedReportType = "Structure"; reportJob.aggregationTypes = new string[1] { "Creative" }; reportJob.selectedColumns = new String[] { "AdGroupId", "DescriptionLine1", "DescriptionLine2", "DescriptionLine3", "CreativeId", "CreativeDestUrl", "CreativeType", "VisibleUrl", "AdStatus"}; service.validateReportJob(reportJob); This code had been working for a while until I linked new account which crashes with BillingException: "Not agreed to latest AdWords terms and conditions" in validateReportJob. For more than 20 other accounts this code still works correctly. So what should I do to get rid of this exception? Thanks Alexander -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Have you migrated to v200909 yet? The v13 sunset is on April 22, 2010. Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en To unsubscribe from this group, send email to adwords-api+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.