Hi Ashish, The *AdGroupBidModifierService* only supports Platform bid modifiers. From the service documentation<https://developers.google.com/adwords/api/docs/reference/v201402/AdGroupBidModifierService> :
Service used to manage campaign criterion bid overrides at the ad group > level. Currently supports platform (mobile) bid multiplier overrides only. The add_ad_group_bid_modifier.py<https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201402/advanced_operations/add_ad_group_bid_modifier.py> example illustrates how to set a platform bid modifier for an ad group. Cheers, Josh, AdWords API Team On Monday, May 12, 2014 10:46:01 AM UTC-4, Ashish Pathak wrote: > > Hi, > > I'm trying to set adgroup level bid modifier for remarketing list using > code- > > operations.append({ > 'xsi_type':'AdGroupBidModifierOperation', > 'operator': 'SET', > 'operand': { > 'xsi_type': 'AdGroupBidModifier', > 'adGroupId': ad_group_id, > 'criterion': { > 'xsi_type': 'CriterionUserList', > 'id': criterion_id > }, > 'bidModifier': bid_modifier > } > }) > > when i tried criterion_id='boomuserlist::4817763' > > getting error - 'Unmarshalling Error: For input string: > "boomuserlist::4817763" ' > > also for criterion_id='4817763' getting error invalid_id. > > I'm using python adword api lib,please help ! > > Thank you ! > > Regards, > Ashish Pathak > > > > > On Friday, March 7, 2014 10:39:48 PM UTC+5:30, GregT wrote: >> >> Hi, >> >> Sometimes when pulling audience structure data for RLSA with the audience >> performance report, I want to get the data for just one audience for a >> campaign. However, whenever I try to use a predicate that limits the >> audience, I get back no rows. The predicates for status and campaign id >> work fine (returning what I would expect if I don't also add in the >> criteria predicate). I know that audience criteria are a little odd, with >> the "boomuserlist::12345" format ( >> https://groups.google.com/forum/#!topic/adwords-api/TwCw8z80I9w), so I'm >> not sure if I'm creating the predicate incorrectly, or it might just not be >> possible. >> >> The predicates I've tried unsuccessfully are predicates where Criteria >> equals boomuserlist::12345 or Criteria equals 12345, where 12345 is the id >> of the audience. This is with v201309 (Java library). >> >> Should one of these predicates work, or is there a different predicate I >> should use, or is this just not possible? Obviously, I can work around it >> by filtering by audience id as I parse the report, but I'd rather not if I >> don't have to. >> >> Thanks in advance, >> Greg >> >> >> -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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/d/optout.
