Hi Peter, thanks for the response - that sadly didn't help me at all. As you might know, there is no "null" in Python but a "None". So I've tried all kind of stuff:
ad_group.target_cpa_micros.value = None (Error: None has type NoneType, but expected one of: int, long) ad_group.target_cpa_micros.value = 0 (no error, no change) ad_group.target_cpa_micros.value = int() (no error, no change) ad_group.target_cpa_micros.value = "" (Error: '' has type str, but expected one of: int, long) And hell, even ad_group.target_cpa_micros.value = "null" (Error: 'null' has type str, but expected one of: int, long) Trial an error only get you so far - would it be much to ask for one line of code (to work with the Python library) from your side? Regards Mat adsapiforumadvisor schrieb am Donnerstag, 5. November 2020 um 07:10:23 UTC+1: > Hi Mat, > > If you are looking for a way to update your bids, you may refer to this > guide > <https://developers.google.com/google-ads/api/docs/campaigns/bidding/set-bids#updating_bids> > > as to how. If you wish to remove bids, you can set the field back to null > <https://developers.google.com/google-ads/api/docs/campaigns/bidding/set-bids#removing_bids> > . > > Let me know if this helps. > > Best regards, > > [image: Google Logo] > Peter Laurence Napa Oliquino > Google Ads API Team > > > ref:_00D1U1174p._5004Q2777tv:ref > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [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 and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/6bdba82b-9a20-4b35-b038-079f1ac0831fn%40googlegroups.com.
