Hi Rodolfo, since the guide linked by Peter only states to show examples on how to remove AdGroup Bid Modifiers but fails to actually provide such an example, here how it should work (using the Python library):
ad_group_bm_service = googleads_client.get_service('AdGroupBidModifierService') operations = [] ad_group_bid_modifier_operation = googleads_client.get_type('AdGroupBidModifierOperation') resource_name = f"customers/{customer_id}/adGroupBidModifiers/{ad_group_id}~{criterion_id}" ad_group_bid_modifier_operation.remove = resource_name operations.append(ad_group_bid_modifier_operation) ad_group_bm_response = ( ad_group_bm_service.mutate_ad_group_bid_modifiers( customer_id=str(customer_id), operations=operations) ) Regards Mat rodolfo....@flixbus.com schrieb am Freitag, 18. Juni 2021 um 16:31:03 UTC+2: > Hey, > > I'd like to remove ad group bid modifiers, but I managed only to update > the resource. I'm currently setting ad_group_bid_modifier.bid_modifier > <https://developers.google.com/google-ads/api/fields/v7/ad_group_bid_modifier> > > to 1 and I believe it works because I see the adjustment as 0% on Google > Ads. However, I'd like to fully remove the bid modifier programmatically > and not appear the 0%. Is that possible or do I have to do the removal > manually in order to that happen? > > Best regards, > > Rodolfo Saldanha > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads 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 --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/9d4b7e1a-539e-451b-a839-3e50cb997566n%40googlegroups.com.