Hi,

To further investigate your issue, kindly provide the complete SOAP request 
and response logs when you added the two keywords you mentioned, your 
clientCustomerId, and a screenshot of your report showing the retrieved 
three keywords.

Kindly reply via the *Reply privately to author.*

Best regards,
Dannison
AdWords API Team

On Monday, September 17, 2018 at 2:03:53 PM UTC+8, [email protected] wrote:
>
> Hi Adwords Team,
>
> During a display campaign, we send 2 keywords via Adwords API using EXACT 
> match. However, when we fetch reports using Adwords API, it is returning  
>  3 keywords and it is flagging the 3rd keyword as Broad match.
>
> How do you get Adwords API to report keywords performance accurately 
> without adding extra stuff?
>
>
> *Input KEYWORDS using EXACT Match*
>
>
> def addTargetKeyword(self,targetDf,adGroupOperation,adGroupId):
>         #print (targetDf)
>         keywords = targetDf[JsonConstants.TARGET_KEYWORDS_KEYWORDS]
>         keyword=keywords.split(",")
>         if JsonConstants.TARGET_KEYWORDS_MATCHTYPE in targetDf:
>             matchType = targetDf[JsonConstants.TARGET_KEYWORDS_MATCHTYPE]
>         else:
>             matchType='EXACT'
>         #matchType=matchTypes.split(",")
>         isPositive=targetDf[JsonConstants.TARGET_KEYWORDS_ISPOSITIVE]
>         if(isPositive==1):
>             keywordType='BiddableAdGroupCriterion'
>         else:
>             keywordType='NegativeAdGroupCriterion'
>         ##keyWord=[]   
>         for j in range(len(keyword)):
>             keyWord={
>              'xsi_type': 'Keyword',
>              'matchType': matchType,
>              'text':keyword[j]
>             }
>             adGroupOperation.append({
>                     'operator': 'ADD',
>                     'operand': { 
>                             'xsi_type':keywordType,
>                             'adGroupId': adGroupId,
>                             'criterion': keyWord
>                             }
>                     })
>         return adGroupOperation
>
> *KEYWORDS PERFORMANCE REPORT*
>
> def report(self,camp):
>         print camp
>         report = {
>                 'reportName': 'TODAY KEYWORDS_PERFORMANCE_REPORT',
>                 'dateRangeType': 'ALL_TIME',
>                 'reportType': 'KEYWORDS_PERFORMANCE_REPORT',
>                 'downloadFormat': 'CSV',
>                 'selector': {
>                         'fields': 
> ['CampaignId','CampaignName','Criteria','KeywordMatchType','FirstPageCpc','TopOfPageCpc','Impressions','Clicks','Cost','Conversions','Status'],
>                         'predicates':{'field':'CampaignId',
>                                       'operator':'IN',
>                                       'values':(camp)                      
>      
>                         }
>                         }
>                 }
>
>   
>         reportDownloaded = 
> self.report_downloader.DownloadReportAsString(report, 
> skip_report_header=True, skip_column_header=False,skip_report_summary=True, 
> include_zero_impressions=True)
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
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/cfc62bdd-54f9-4e0c-aa56-9a517095448f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • ... hello
    • ... 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum

Reply via email to