SlideShare a Scribd company logo
AdWords API Workshops – All rights reserved
AdWords API Features Update
What’s new, out of beta, and noteworthy

Marc Wandschneider, Google Inc.
<SPEAKER>, Google, Inc.
AdWords API Workshops – All rights reserved
Latest Release Highlights
● Some new features
○ Offline conversions import & tracking
○ New reporting types and fields
○ Shared budget changes

AdWords API Workshops – All rights reserved
Latest Release Highlights (cont’d)
● Other noteworthy changes:
○ Names mandatory on Campaigns and AdGroups
○ Can no longer toggle search network for NetworkSetting
○ Stats objects are no longer available via services

AdWords API Workshops – All rights reserved
Latest Release Highlights (cont’d)
● Five features graduated from beta
○ Display criteria bid modifiers
○ Dynamic Search Ads
○ AdGroup level feeds (site links)
○ Flexible bidding strategies
○ Location bid modifiers

AdWords API Workshops – All rights reserved
New Features

AdWords API Workshops – All rights reserved
Offline Conversion Import
● Allows you to register conversions by hand
● Might have been manual conversion
● Maybe your conversion tracker works differently

● Can register conversions up to 90 days after the click
● Exact value is configurable

● Conversions can be used for
● Flexible bidding
● Conversion reporting (aka search funnels)

AdWords API Workshops – All rights reserved
Offline Conversion Import (cont’d)
● Basic procedure
a. Register to receive GCLID with auto-tagging
b. Store incoming click ID as lead in your database
c. When conversion occurs, mark as converted in DB
d. Periodically run code to upload these conversions to API

AdWords API Workshops – All rights reserved
Offline Conversion Import (cont’d)
● To Upload a conversion, two steps:
a. Create Import conversion type
■ via UI or ConversionTrackerService

b. Report (upload) the conversion

AdWords API Workshops – All rights reserved
Create Import Conversion Type (Code)
UploadConversion uc = new UploadConversion();
uc.setCategory(ConversionTrackerCategory.SIGNUP);
uc.setName("Freemium signup");
uc.setViewthroughLookbackWindow(30);
uc.setCtcLookbackWindow(90);

ConversionTrackerService.mutate(ADD, uc);
// NOTE: wait 6 hours after creating before uploading.
AdWords API Workshops – All rights reserved
Report Offline Conversion
OfflineConversionFeed feed = new OfflineConversionFeed();
feed.setConversionName("Freemium signup");
feed.setConversionTime(conversionTime);
feed.setGoogleClickId(gClid);
feed.setConversionValue(3.50);

// optional, > 0

OfflineConversionFeedService.mutate(ADD, feed);
// conversion can take up to 3 hours to be processed fully
AdWords API Workshops – All rights reserved
Other Noteworthy Changes

AdWords API Workshops – All rights reserved
Campaign and AdGroup Names
● Now mandatory field
● It’s up to you to guarantee unique
among your campaigns

● Not adding will cause an error
● (that’s it)

AdWords API Workshops – All rights reserved
NetworkSetting and Search
● Display only campaigns have evolved over time
● Can now no longer toggle search for NetworkSetting
● Will throw TargetError.TARGET_ERROR

● Can still toggle display network
● Only affects you if you’re changing NetworkSetting for
existing campaigns
AdWords API Workshops – All rights reserved
Stats Objects Going Away
● Many services (7) used to contain Stats objects
● i.e. AdGroupService ,CampaignService, MutateJobService

● No longer there, will return an error
● Use reporting instead to get statistics
● Reporting API is extremely easy to use
● You should already be using it!

AdWords API Workshops – All rights reserved
Individual Campaign Budgets Are Back...
● As of v201309, it is now possible to create ‘individual’
(non-shared) budgets
● As of v201302, a boolean field was added to the
Budget object to support this: isExplicitlyShared
● The isExplicitlyShared value is now honoured
● Set isExplicitlyShared = false to create an
individual budget
● Default value: isExplicitlyShared = true

AdWords API Workshops – All rights reserved
Why Create Individual Campaign Budgets?
● Individual budgets will not appear in the AdWords UI
‘Shared Library’
● They cannot be shared unless converted to a shared
budget by setting isExplicitlyShared = true
● Shared budgets cannot be converted to Individual
budgets
● Individual Budgets are automatically deleted when the
Campaign is deleted
○ BudgetService.mutate(REMOVE op) not required
AdWords API Workshops – All rights reserved
Why Create Individual Campaign Budgets?
● Campaigns using Budget Optimizer or Campaign
Experiments cannot share budgets
● Individual budgets enforce this

AdWords API Workshops – All rights reserved
Features graduated from beta

AdWords API Workshops – All rights reserved
1. Display Criteria Bid Modifiers
●

BiddableAdGroupCriterion.bidModifier

!!

● For modifying bids for certain Display Network segments
● Can modify bids for specific placements / audiences

● RLSAs too!
● Won’t work for keywords or other criterion types

AdWords API Workshops – All rights reserved
2. Dynamic Search Ads
● Ads that serve based on your sites’ content
● Don’t need to add headline, destination URL, or keywords
● You provide only descriptions, display URL

● Same ranking — performs same as other search ads
● Work within keyword-based campaigns
● Can provide DSAs as “catch-all” for non-matched keywords

● Can still use negative keywords, reporting, extensions

AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)
● Create Campaigns and AdGroups as before
● Feel free to add keyword criteria
● For DSAs, you need three things:
● DomainInfoExtension
● One or more Webpage Criteria
● DynamicSearchAds

AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)

● Create Ad of type DynamicSearchAd
● Provide description1, description2, displayUrl
● One trick: If you provide url must use parameterised
value
● Can update, change status, etc

AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)
● url parameter, if provided, needs a parameter
● One of the following values:
● {unescapedlpurl} — Used at beginning, replaces entire URL
● {unescapedlpurl}?lang=en
● {escapedlpurl} — UR- encoded version, i.e. for trackers
● http://www.3rdpartytracker.com/?lp={escapedlpurl}
● {lpurlpath} — Only path and query part of landing page URL
● http://www.mygoodbusiness.com/tracking/{lpurlpath}
●

If you don’t provide url, {unescapedlpurl} used

AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)
DynamicSearchAd dsa = new DynamicSearchAd();
dsa.url = "{unescapedlpurl}?source=dsa";
dsa.displayUrl = "amazingcarrepairs.com";
dsa.description1 = "We'll take good care of your car";
dsa.description2 = "Wash and wax service included.";
AdGroupAd aga = new AdGroupAd(_adgroupid);
aga.ad = dsa;
AdGroupService.mutate(ADD, aga);

AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)
● Add criteria of type Webpage
● Can target by title, content, URL, etc.
● Can also add negative Webpage criteria
● Don’t serve against these pages, etc.

AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)
WebpageCondition cond = new WebpageCondition();
cond.operand = URL; // filter on URLs, equal to "CONTAINS"
cond.argument = "/grandcherokee";
WebpageParameter param = new WebpageParameter();
param.criterionName = "Jeep Grand Cherokee";
param.conditions = [ cond ];
Webpage wp = new Webpage(); // the criterion
wp.parameter = param;
// can now put in AdGroupCriterion object and ADD!
AdWords API Workshops – All rights reserved
Dynamic Search Ads (cont’d)
● Caveat:
● DSAs depend on a DomainInfoExtension
●

These are Campaign Ad Extensions

● These are NOT creatable via API
●

Must use UI

● Can create DSAs against existing DomainInfoExtension
● Can get stats & update fields on existing DSAs

AdWords API Workshops – All rights reserved
3. AdGroup Level Feeds
● Can now use AdGroupFeedService
● Add site links to individual AdGroups
● (that’s about it, really)

AdWords API Workshops – All rights reserved
4. Flexible Bidding Strategies
● Currently bidding strategies are per campaign
● You create a new object and pass that to new campaign

● Would be nice if we could create a pool of them
● Be able to use same configuration across campaigns
● Try out different strategies in different situations

● Flexible Bidding Strategies to the rescue
● Think “shared”
AdWords API Workshops – All rights reserved
Flexible Bidding Strategies (cont’d)

AdWords API Workshops – All rights reserved
Flexible Bidding Strategies (cont’d)

AdWords API Workshops – All rights reserved
Flexible Bidding Strategies (cont’d)
● BiddingStrategyService is the pool
● Create a SharedBiddingStrategy object
● Contains biddingScheme as you’re used to
●

I.e. TargetSpendBiddingScheme

● For Campaign.biddingStrategyConfiguration
● You just use bidding strategy ID from the shared object

AdWords API Workshops – All rights reserved
Flexible Bidding Strategies (cont’d)
// 1. create the shared bidding
TargetSpendBiddingScheme tsbs =
tsbs.spendTarget = 250000000;
tsbs.bidCeiling = 2500000;

strategy.
new TargetSpendBiddingScheme();
// $250 a month
// max 2.50$ bid

SharedBiddingStrategy sbs = new SharedBiddingStrategy();
sbs.name = "Monthly targeted spend";
sbs.type = TARGET_SPEND;
sbs.biddingScheme = tsbs;
BiddingStrategyService.mutate(ADD, sbs); // extract result

AdWords API Workshops – All rights reserved
Flexible Bidding Strategies (cont’d)
// 2. add it to the campaign.
Campaign c = new Campaign();
// set up stuff on c
BiddingStrategyConfiguration bsc = new
BiddingStrategyConfiguration();
bsc.biddingStrategyId = sbs.id;
c.biddingStrategyConfiguration = bsc;

CampaignService.mutate(ADD, c);
AdWords API Workshops – All rights reserved
5. Location Bid Modifiers
● Set different bids for
different locations
● All within the comfort of one
campaign

AdWords API Workshops – All rights reserved
Location Bid Modifiers (cont’d)
// 1. normal location criterion.
LocationCriterion lc = new Location();
lc.id = 1002451; // Toronto, Ontario, Canada
lc.bidModifier = 1.0;
CampaignCriterion cc = new CampaignCriterion();
cc.campaignId = _campaignId;
cc.criterion = lc;
CampaignCriterionService.mutate(ADD, cc);

AdWords API Workshops – All rights reserved
Location Bid Modifiers (cont’d)
// 2. let's bid more for successful suburb
LocationCriterion lc = new Location();
lc.id = 1002350;
// Mississauga, Ont, Can
CampaignCriterion cc = new CampaignCriterion();
cc.campaignId = _campaignId;
cc.criterion = lc;
cc.bidModifier = 1.5;
// bid 50% more for here
CampaignCriterionService.mutate(ADD, cc);

AdWords API Workshops – All rights reserved
The Neglected
Don’t forget about these features

AdWords API Workshops – All rights reserved
A Couple of Frequently Unused Features
● Negative Keywords
● Site Links (now via Feed Services)
● Implementing these will help with QS, CTR, relevance
● A simple way to help you serve more effectively

AdWords API Workshops – All rights reserved
Negative Keywords
// Create keyword. We're creating ads for “Westminster dentist”.
Keyword keyword = new Keyword();
keyword.setText("reviews");
keyword.setMatchType(KeywordMatchType.BROAD);
// Create negative campaign criterion.
NegativeCampaignCriterion ncc = new NegativeCampaignCriterion();
ncc.setCampaignId(_campaignId);
ncc.setCriterion(keyword);
CampaignCriterionService.mutate(ADD, ncc);
AdWords API Workshops – All rights reserved
Site Links
● Now part of Feed Services
● Separate talk later today

AdWords API Workshops – All rights reserved
Helpful Links

Google Ads v201309 Blog Post - http://goo.gl/TvNQDx
v201309 Migration Guide - http://goo.gl/e4O7YZ
AdWords API Workshops – All rights reserved
Questions?

AdWords API Workshops – All rights reserved
AdWords API Workshops – All rights reserved

More Related Content

PDF
AdWords API Feed Services
PDF
AdWords API Targeting Options
PDF
Reporting tips & tricks
PDF
AdWords Scripts
PDF
Reporting tips & tricks
PDF
Upgraded URLs
PDF
Rate limits and performance Talk
PDF
AwReporting Tool
AdWords API Feed Services
AdWords API Targeting Options
Reporting tips & tricks
AdWords Scripts
Reporting tips & tricks
Upgraded URLs
Rate limits and performance Talk
AwReporting Tool

Similar to API Update Rundown (20)

PDF
API Updates for v201402
PDF
AdWords API - How to build a platform
PDF
07. feeds update
PPTX
Google Adwords API
PDF
Why use ad words api
PDF
Extension Setting Services
PDF
GMB API (Google My Business)
PDF
Bid Estimation with the AdWords API (v2)
PDF
Mobile Landing Pages Talk
PDF
Getting Started with AdWords API and Google Analytics
PDF
Effective Reporting
PDF
Getting started with Google Analytics and the AdWords API
PPTX
Explaining AdWords Ad Customizers
PDF
Opportunity Analysis with Kratu
PDF
OAuth 2.0 refresher Talk
PDF
Bidding and Budgeting (SF)
PDF
Reporting Updates
PDF
New Bidding and Budgeting
PDF
Adwords Seminar 3: PLAs - How to do and Optimise
PDF
Mobile landing pages
API Updates for v201402
AdWords API - How to build a platform
07. feeds update
Google Adwords API
Why use ad words api
Extension Setting Services
GMB API (Google My Business)
Bid Estimation with the AdWords API (v2)
Mobile Landing Pages Talk
Getting Started with AdWords API and Google Analytics
Effective Reporting
Getting started with Google Analytics and the AdWords API
Explaining AdWords Ad Customizers
Opportunity Analysis with Kratu
OAuth 2.0 refresher Talk
Bidding and Budgeting (SF)
Reporting Updates
New Bidding and Budgeting
Adwords Seminar 3: PLAs - How to do and Optimise
Mobile landing pages
Ad

More from marcwan (20)

PDF
Mcc scripts deck (日本語)
PDF
Opportunity Analysis with Kratu (v2)
PDF
AdWords API & OAuth 2.0, Advanced
PDF
AdWords Scripts and MCC Scripting
PDF
AwReporting Update
PDF
Shopping Campaigns and AdWords API
PDF
Reporting Tips and Tricks (Spanish)
PDF
Rate limits and performance (Spanish)
PDF
OAuth 2.0 (Spanish)
PDF
End to-end how to build a platform (Spanish)
PDF
AwReporting tool introduction (Spanish)
PDF
Api update rundown (Spanish)
PDF
AdWords Scripts (Spanish)
PDF
Mobile landing pages (Spanish)
PDF
Rate limits and performance
PDF
OAuth 2.0 refresher
PDF
End to-end how to build a platform
PDF
AwReporting Tool
PDF
Api update rundown
PDF
AdWords Scripts
Mcc scripts deck (日本語)
Opportunity Analysis with Kratu (v2)
AdWords API & OAuth 2.0, Advanced
AdWords Scripts and MCC Scripting
AwReporting Update
Shopping Campaigns and AdWords API
Reporting Tips and Tricks (Spanish)
Rate limits and performance (Spanish)
OAuth 2.0 (Spanish)
End to-end how to build a platform (Spanish)
AwReporting tool introduction (Spanish)
Api update rundown (Spanish)
AdWords Scripts (Spanish)
Mobile landing pages (Spanish)
Rate limits and performance
OAuth 2.0 refresher
End to-end how to build a platform
AwReporting Tool
Api update rundown
AdWords Scripts
Ad

Recently uploaded (20)

PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
A Presentation on Artificial Intelligence
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Approach and Philosophy of On baking technology
PPTX
TLE Review Electricity (Electricity).pptx
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
August Patch Tuesday
PDF
Mushroom cultivation and it's methods.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Web App vs Mobile App What Should You Build First.pdf
PDF
Encapsulation theory and applications.pdf
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
Chapter 5: Probability Theory and Statistics
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Programs and apps: productivity, graphics, security and other tools
A Presentation on Artificial Intelligence
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
cloud_computing_Infrastucture_as_cloud_p
gpt5_lecture_notes_comprehensive_20250812015547.pdf
NewMind AI Weekly Chronicles - August'25-Week II
Approach and Philosophy of On baking technology
TLE Review Electricity (Electricity).pptx
A novel scalable deep ensemble learning framework for big data classification...
August Patch Tuesday
Mushroom cultivation and it's methods.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
OMC Textile Division Presentation 2021.pptx
Web App vs Mobile App What Should You Build First.pdf
Encapsulation theory and applications.pdf
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
Assigned Numbers - 2025 - Bluetooth® Document
Chapter 5: Probability Theory and Statistics

API Update Rundown

  • 1. AdWords API Workshops – All rights reserved
  • 2. AdWords API Features Update What’s new, out of beta, and noteworthy Marc Wandschneider, Google Inc. <SPEAKER>, Google, Inc. AdWords API Workshops – All rights reserved
  • 3. Latest Release Highlights ● Some new features ○ Offline conversions import & tracking ○ New reporting types and fields ○ Shared budget changes AdWords API Workshops – All rights reserved
  • 4. Latest Release Highlights (cont’d) ● Other noteworthy changes: ○ Names mandatory on Campaigns and AdGroups ○ Can no longer toggle search network for NetworkSetting ○ Stats objects are no longer available via services AdWords API Workshops – All rights reserved
  • 5. Latest Release Highlights (cont’d) ● Five features graduated from beta ○ Display criteria bid modifiers ○ Dynamic Search Ads ○ AdGroup level feeds (site links) ○ Flexible bidding strategies ○ Location bid modifiers AdWords API Workshops – All rights reserved
  • 6. New Features AdWords API Workshops – All rights reserved
  • 7. Offline Conversion Import ● Allows you to register conversions by hand ● Might have been manual conversion ● Maybe your conversion tracker works differently ● Can register conversions up to 90 days after the click ● Exact value is configurable ● Conversions can be used for ● Flexible bidding ● Conversion reporting (aka search funnels) AdWords API Workshops – All rights reserved
  • 8. Offline Conversion Import (cont’d) ● Basic procedure a. Register to receive GCLID with auto-tagging b. Store incoming click ID as lead in your database c. When conversion occurs, mark as converted in DB d. Periodically run code to upload these conversions to API AdWords API Workshops – All rights reserved
  • 9. Offline Conversion Import (cont’d) ● To Upload a conversion, two steps: a. Create Import conversion type ■ via UI or ConversionTrackerService b. Report (upload) the conversion AdWords API Workshops – All rights reserved
  • 10. Create Import Conversion Type (Code) UploadConversion uc = new UploadConversion(); uc.setCategory(ConversionTrackerCategory.SIGNUP); uc.setName("Freemium signup"); uc.setViewthroughLookbackWindow(30); uc.setCtcLookbackWindow(90); ConversionTrackerService.mutate(ADD, uc); // NOTE: wait 6 hours after creating before uploading. AdWords API Workshops – All rights reserved
  • 11. Report Offline Conversion OfflineConversionFeed feed = new OfflineConversionFeed(); feed.setConversionName("Freemium signup"); feed.setConversionTime(conversionTime); feed.setGoogleClickId(gClid); feed.setConversionValue(3.50); // optional, > 0 OfflineConversionFeedService.mutate(ADD, feed); // conversion can take up to 3 hours to be processed fully AdWords API Workshops – All rights reserved
  • 12. Other Noteworthy Changes AdWords API Workshops – All rights reserved
  • 13. Campaign and AdGroup Names ● Now mandatory field ● It’s up to you to guarantee unique among your campaigns ● Not adding will cause an error ● (that’s it) AdWords API Workshops – All rights reserved
  • 14. NetworkSetting and Search ● Display only campaigns have evolved over time ● Can now no longer toggle search for NetworkSetting ● Will throw TargetError.TARGET_ERROR ● Can still toggle display network ● Only affects you if you’re changing NetworkSetting for existing campaigns AdWords API Workshops – All rights reserved
  • 15. Stats Objects Going Away ● Many services (7) used to contain Stats objects ● i.e. AdGroupService ,CampaignService, MutateJobService ● No longer there, will return an error ● Use reporting instead to get statistics ● Reporting API is extremely easy to use ● You should already be using it! AdWords API Workshops – All rights reserved
  • 16. Individual Campaign Budgets Are Back... ● As of v201309, it is now possible to create ‘individual’ (non-shared) budgets ● As of v201302, a boolean field was added to the Budget object to support this: isExplicitlyShared ● The isExplicitlyShared value is now honoured ● Set isExplicitlyShared = false to create an individual budget ● Default value: isExplicitlyShared = true AdWords API Workshops – All rights reserved
  • 17. Why Create Individual Campaign Budgets? ● Individual budgets will not appear in the AdWords UI ‘Shared Library’ ● They cannot be shared unless converted to a shared budget by setting isExplicitlyShared = true ● Shared budgets cannot be converted to Individual budgets ● Individual Budgets are automatically deleted when the Campaign is deleted ○ BudgetService.mutate(REMOVE op) not required AdWords API Workshops – All rights reserved
  • 18. Why Create Individual Campaign Budgets? ● Campaigns using Budget Optimizer or Campaign Experiments cannot share budgets ● Individual budgets enforce this AdWords API Workshops – All rights reserved
  • 19. Features graduated from beta AdWords API Workshops – All rights reserved
  • 20. 1. Display Criteria Bid Modifiers ● BiddableAdGroupCriterion.bidModifier !! ● For modifying bids for certain Display Network segments ● Can modify bids for specific placements / audiences ● RLSAs too! ● Won’t work for keywords or other criterion types AdWords API Workshops – All rights reserved
  • 21. 2. Dynamic Search Ads ● Ads that serve based on your sites’ content ● Don’t need to add headline, destination URL, or keywords ● You provide only descriptions, display URL ● Same ranking — performs same as other search ads ● Work within keyword-based campaigns ● Can provide DSAs as “catch-all” for non-matched keywords ● Can still use negative keywords, reporting, extensions AdWords API Workshops – All rights reserved
  • 22. Dynamic Search Ads (cont’d) ● Create Campaigns and AdGroups as before ● Feel free to add keyword criteria ● For DSAs, you need three things: ● DomainInfoExtension ● One or more Webpage Criteria ● DynamicSearchAds AdWords API Workshops – All rights reserved
  • 23. Dynamic Search Ads (cont’d) ● Create Ad of type DynamicSearchAd ● Provide description1, description2, displayUrl ● One trick: If you provide url must use parameterised value ● Can update, change status, etc AdWords API Workshops – All rights reserved
  • 24. Dynamic Search Ads (cont’d) ● url parameter, if provided, needs a parameter ● One of the following values: ● {unescapedlpurl} — Used at beginning, replaces entire URL ● {unescapedlpurl}?lang=en ● {escapedlpurl} — UR- encoded version, i.e. for trackers ● http://www.3rdpartytracker.com/?lp={escapedlpurl} ● {lpurlpath} — Only path and query part of landing page URL ● http://www.mygoodbusiness.com/tracking/{lpurlpath} ● If you don’t provide url, {unescapedlpurl} used AdWords API Workshops – All rights reserved
  • 25. Dynamic Search Ads (cont’d) DynamicSearchAd dsa = new DynamicSearchAd(); dsa.url = "{unescapedlpurl}?source=dsa"; dsa.displayUrl = "amazingcarrepairs.com"; dsa.description1 = "We'll take good care of your car"; dsa.description2 = "Wash and wax service included."; AdGroupAd aga = new AdGroupAd(_adgroupid); aga.ad = dsa; AdGroupService.mutate(ADD, aga); AdWords API Workshops – All rights reserved
  • 26. Dynamic Search Ads (cont’d) ● Add criteria of type Webpage ● Can target by title, content, URL, etc. ● Can also add negative Webpage criteria ● Don’t serve against these pages, etc. AdWords API Workshops – All rights reserved
  • 27. Dynamic Search Ads (cont’d) WebpageCondition cond = new WebpageCondition(); cond.operand = URL; // filter on URLs, equal to "CONTAINS" cond.argument = "/grandcherokee"; WebpageParameter param = new WebpageParameter(); param.criterionName = "Jeep Grand Cherokee"; param.conditions = [ cond ]; Webpage wp = new Webpage(); // the criterion wp.parameter = param; // can now put in AdGroupCriterion object and ADD! AdWords API Workshops – All rights reserved
  • 28. Dynamic Search Ads (cont’d) ● Caveat: ● DSAs depend on a DomainInfoExtension ● These are Campaign Ad Extensions ● These are NOT creatable via API ● Must use UI ● Can create DSAs against existing DomainInfoExtension ● Can get stats & update fields on existing DSAs AdWords API Workshops – All rights reserved
  • 29. 3. AdGroup Level Feeds ● Can now use AdGroupFeedService ● Add site links to individual AdGroups ● (that’s about it, really) AdWords API Workshops – All rights reserved
  • 30. 4. Flexible Bidding Strategies ● Currently bidding strategies are per campaign ● You create a new object and pass that to new campaign ● Would be nice if we could create a pool of them ● Be able to use same configuration across campaigns ● Try out different strategies in different situations ● Flexible Bidding Strategies to the rescue ● Think “shared” AdWords API Workshops – All rights reserved
  • 31. Flexible Bidding Strategies (cont’d) AdWords API Workshops – All rights reserved
  • 32. Flexible Bidding Strategies (cont’d) AdWords API Workshops – All rights reserved
  • 33. Flexible Bidding Strategies (cont’d) ● BiddingStrategyService is the pool ● Create a SharedBiddingStrategy object ● Contains biddingScheme as you’re used to ● I.e. TargetSpendBiddingScheme ● For Campaign.biddingStrategyConfiguration ● You just use bidding strategy ID from the shared object AdWords API Workshops – All rights reserved
  • 34. Flexible Bidding Strategies (cont’d) // 1. create the shared bidding TargetSpendBiddingScheme tsbs = tsbs.spendTarget = 250000000; tsbs.bidCeiling = 2500000; strategy. new TargetSpendBiddingScheme(); // $250 a month // max 2.50$ bid SharedBiddingStrategy sbs = new SharedBiddingStrategy(); sbs.name = "Monthly targeted spend"; sbs.type = TARGET_SPEND; sbs.biddingScheme = tsbs; BiddingStrategyService.mutate(ADD, sbs); // extract result AdWords API Workshops – All rights reserved
  • 35. Flexible Bidding Strategies (cont’d) // 2. add it to the campaign. Campaign c = new Campaign(); // set up stuff on c BiddingStrategyConfiguration bsc = new BiddingStrategyConfiguration(); bsc.biddingStrategyId = sbs.id; c.biddingStrategyConfiguration = bsc; CampaignService.mutate(ADD, c); AdWords API Workshops – All rights reserved
  • 36. 5. Location Bid Modifiers ● Set different bids for different locations ● All within the comfort of one campaign AdWords API Workshops – All rights reserved
  • 37. Location Bid Modifiers (cont’d) // 1. normal location criterion. LocationCriterion lc = new Location(); lc.id = 1002451; // Toronto, Ontario, Canada lc.bidModifier = 1.0; CampaignCriterion cc = new CampaignCriterion(); cc.campaignId = _campaignId; cc.criterion = lc; CampaignCriterionService.mutate(ADD, cc); AdWords API Workshops – All rights reserved
  • 38. Location Bid Modifiers (cont’d) // 2. let's bid more for successful suburb LocationCriterion lc = new Location(); lc.id = 1002350; // Mississauga, Ont, Can CampaignCriterion cc = new CampaignCriterion(); cc.campaignId = _campaignId; cc.criterion = lc; cc.bidModifier = 1.5; // bid 50% more for here CampaignCriterionService.mutate(ADD, cc); AdWords API Workshops – All rights reserved
  • 39. The Neglected Don’t forget about these features AdWords API Workshops – All rights reserved
  • 40. A Couple of Frequently Unused Features ● Negative Keywords ● Site Links (now via Feed Services) ● Implementing these will help with QS, CTR, relevance ● A simple way to help you serve more effectively AdWords API Workshops – All rights reserved
  • 41. Negative Keywords // Create keyword. We're creating ads for “Westminster dentist”. Keyword keyword = new Keyword(); keyword.setText("reviews"); keyword.setMatchType(KeywordMatchType.BROAD); // Create negative campaign criterion. NegativeCampaignCriterion ncc = new NegativeCampaignCriterion(); ncc.setCampaignId(_campaignId); ncc.setCriterion(keyword); CampaignCriterionService.mutate(ADD, ncc); AdWords API Workshops – All rights reserved
  • 42. Site Links ● Now part of Feed Services ● Separate talk later today AdWords API Workshops – All rights reserved
  • 43. Helpful Links Google Ads v201309 Blog Post - http://goo.gl/TvNQDx v201309 Migration Guide - http://goo.gl/e4O7YZ AdWords API Workshops – All rights reserved
  • 44. Questions? AdWords API Workshops – All rights reserved
  • 45. AdWords API Workshops – All rights reserved