Hello, I use Python 3.X and the Google official libraries (adwords & Google Ads)
I would like to increase and reduce bids by X% programmatically. In other words, apply a bid modifier globally and not only for a particular device or CALLS.
Is this somehow possible?
I'm using the new beta google ads api, but if needed I can also use the google adwords api to achieve this.
I tried hard to find an example online without luck. My thinking is that I should do something like this:
## 1 - Get current campaign.
## 2 - Get current campaign Budget.
## 3 - Edit current Budget.
## 4 - Save current Budget.
Is this right? Any example doc?