Hi Brandon,

here's an exemplary selector (in Python) that will download a number of 
interesting fields for all keywords of a given campaign, including maxCPC:

selector = {
    'fields': ['Id', 'AdGroupId', 'KeywordText', 'KeywordMatchType', 
'MaxCpc', 'Status', 'CpcBidSource'],
    'predicates': [
        {
            'field': 'CampaignId',
            'operator': 'EQUALS',
            'values': [CAMPAIGN_ID]
        },
        {
            'field': 'CriterionUse',
            'operator': 'EQUALS',
            'values': ['BIDDABLE']
        }
    ],
    'paging': {
            'startIndex': 0,
            'numberResults': MAX_PAGE_SIZE
    }
} 

The maxCPC value will be available in the field bids->maxCpc of every 
returned entry. See 
<https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201206-AdGroupCriterionService>

Cheers,
Dorian

On Tuesday, July 17, 2012 11:10:52 PM UTC+2, Brandon Parise wrote:
>
> I am trying to get the configured MaxCPC for a keyword, using bids 
> property in;
>
>
> https://developers.google.com/adwords/api/docs/reference/latest/AdGroupCriterionService.BiddableAdGroupCriterion
>
> But it's not selectable and doesn't come through the API.  Is there any 
> other way of getting this?
>
> Brandon
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.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 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

Reply via email to