Hello,

I just wanted to know if there´s a Negative Keyword report.
Unfortunately, the result from 
"CAMPAIGN_NEGATIVE_KEYWORDS_PERFORMANCE_REPORT" and 
"KEYWORDS_PERFORMANCE_REPORT" are not correct.  For some reasons, I will 
just retreive 2018 rows but we do have more negative keywords in just one 
adgroup.


CampaignNegativeKeywordsPerformanceReport - C#

ReportDefinition definition = new ReportDefinition
                {
                    reportName = "campaign negative report",
                    reportType = 
ReportDefinitionReportType.CAMPAIGN_NEGATIVE_KEYWORDS_PERFORMANCE_REPORT,
                    downloadFormat = DownloadFormat.CSV,
                    dateRangeType = range,    //ALL_TIME
                    selector = new Selector()
                    {
                        fields = new string[]
                        {
                            "AccountCurrencyCode",
                            "AccountDescriptiveName",
                            "AccountTimeZone",
                            "BaseCampaignId",
                            "CampaignId",
                            "CampaignName",
                            "CampaignStatus",
                            "Criteria",
                            "CustomerDescriptiveName",
                            "ExternalCustomerId",
                            "Id",
                            "IsNegative",
                            "KeywordMatchType"
                        },
                        //predicates = preds.ToArray()         //I´ve 
excluded every predicate to get the most results out of it
                    }
                };
                ReportUtilities utilities = new 
ReportUtilities(GoogleAdwords_Manager.Helper.Settings.SelectedAccount.User, 
"v201809", definition);
                using (ReportResponse response = utilities.GetResponse())
                {
                    using (StreamReader reader = new 
StreamReader(response.Stream))
                    {
                        var lines= 
reader.ReadToEnd().Split(Environment.NewLine.ToCharArray()); //returns a 
few lines :(

                    }
                }



Maybe there are some limitations?
For my current solution, I need to have all Negative Keywords from a 
campaign or an adgroup. 
Currently, I am using the getKeywords function which was shown in the 
tutorials, but the speed is really slow because it has to download each 
keywords page by page for an entire campaign.

Thanks in advance

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c8a36456-630c-4a6a-b459-1814b2db9190%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • ... programmierung
    • ... Zweitze
      • ... programmierung
    • ... 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
    • ... 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum

Reply via email to