We have added support for AdWords API v201607 reports in AdWords scripts. The major changes in this release are:
v201605 will remain the default version for reports until the week of October 10th, 2016. This gives you enough time to verify your scripts and make sure it works with the latest report version.
If you use API versioning in your reports, you need to modify your code to use v201607:
If you have any questions about these changes or AdWords scripts in general, you can post them on our developer forum.
- The ConvertedClicks field and its derived fields were removed from all reports. Modify your report requests to retrieve the corresponding fields based on Conversions instead.
- New columns were added to the CAMPAIGN_PERFORMANCE_REPORT and ADGROUP_PERFORMANCE_REPORT for Desktop and Tablet device bid modifiers.
- The QualityScore field will now have a value of "
--
" on rows whereHasQualityScore = false
. Previously, these rows had a default QualityScore value. - EffectiveFinalUrl on the FINAL_URL_REPORT and FinalUrl on the SEARCH_QUERY_PERFORMANCE_REPORT will now have a value of "
--
" when no data is available. Previously, these fields returned the empty string in this situation.
v201605 will remain the default version for reports until the week of October 10th, 2016. This gives you enough time to verify your scripts and make sure it works with the latest report version.
If you use API versioning in your reports, you need to modify your code to use v201607:
If you don’t use API versioning, no code changes are required. Your reports will continue using v201605 for now, and switch to v201607 when we make v201607 the default version the week of October 10th, 2016.
var report = AdWordsApp.report(query, {
apiVersion: 'v201607'
});
If you have any questions about these changes or AdWords scripts in general, you can post them on our developer forum.