Hi, As a starting point (if you haven't seen this already) you may want to check out the following AdWords Help Center document that explains proximity targeting with bid adjustments.
https://support.google.com/adwords/answer/2914785?hl=en In terms of the API, you can achieve this by setting up a CampaignCriterion as follows: 1. Use the GeoLocationService to get the GeoLocation for your address (see our location targeting guide<https://developers.google.com/adwords/api/docs/guides/location-targeting#proximity-targeting>for details) 2. Use the CampaignCriterionService<https://developers.google.com/adwords/api/docs/reference/v201309/CampaignCriterionService>to add a new CampaignCriterion<https://developers.google.com/adwords/api/docs/reference/v201309/CampaignCriterionService.CampaignCriterion>as follows: - Create a new Proximity<https://developers.google.com/adwords/api/docs/reference/v201309/CampaignCriterionService.Proximity>object - Set the Proximity's geoPoint to the GeoLocation.geoPoint from step 1 - Set the CampaignCriterion's criterion to the Proximity just created - Set the CampaignCriterion's bidModifier<https://developers.google.com/adwords/api/docs/reference/v201309/CampaignCriterionService.CampaignCriterion#bidModifier>to the desired multiplier - Create a CampaignCriterionOperation<https://developers.google.com/adwords/api/docs/reference/v201309/CampaignCriterionService.CampaignCriterionOperation>of type ADD with the operand equal to the CampaignCriterion just created - Pass the operation to CampaignCriterionService.mutate That should cover the basic idea, but please post back if you have any additional questions. Best, Josh, AdWords API Team On Thursday, January 23, 2014 12:59:15 PM UTC-5, ssAdword wrote: > > Can I use bid adjustment by radius with AdWords API? > > For example, I use a proximity targeting for my mobile image campaign. > And with radius <5miles, I would like to increase my bid (automatically > adjust) by 20%. And if the user is out of the 5mile radius, I will use the > normal max bid. > Is AdWords API supporting this feature? If yes, how can find a guidance to > write the code? any link to explain this tool would be helpful. > > Thank you > > > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://googleadsdeveloper.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 [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 Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
