Re: Setting Bid Strategy through API brings up different one in UI

2019-06-18 Thread Vinutha Nayak
Hello Google , With due respect, if you do not have an answer please confirm the same. If this was missed by any chance, then please let me know the answer to the same. I wouldn't want to close this discussion without having a logical conclusion to the query raised. It is really

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-12 Thread Vinutha Nayak
Hi Anash, It's 5 days without any response. Can someone atleast respond if someone is looking on this or I am waiting without any hope ? Thanks and Regards, Vinutha Nayak On Tuesday, 11 June 2019 18:38:34 UTC+5:30, Vinutha Nayak wrote: > > Hi Anash, > > Can you get back on this please ? > >

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-11 Thread Vinutha Nayak
Hi Anash, Can you get back on this please ? Thanks and Regards, Vinutha Nayak On Monday, 10 June 2019 11:14:12 UTC+5:30, Vinutha Nayak wrote: > > Hi Anash, > > Could you please let me know if you were able to find anything on the same > ? > > On Friday, 7 June 2019 23:34:38 UTC+5:30,

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-09 Thread Vinutha Nayak
Hi Anash, Could you please let me know if you were able to find anything on the same ? On Friday, 7 June 2019 23:34:38 UTC+5:30, adsapiforumadvisor wrote: > > HI Vinutha, > > Apologies that I missed the original post. I'm checking with the relevant > teams to get an answer. Thanks for your

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-07 Thread Google Ads API Forum Advisor Prod
HI Vinutha, Apologies that I missed the original post. I'm checking with the relevant teams to get an answer. Thanks for your patience. Cheers Anash ref:_00D1U1174p._5001UBl9Bo:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-06 Thread Vinutha Nayak
Hi Anash, That was the first thing I did ( please check the first mail from me in this thread ) .But I saw discrepancy in the UI which was getting set as " *MANUAL_CPC"* and that is why I raised this issue in the first place. I was told that campaign.bidding_strategy_type is a read only

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-06 Thread Google Ads API Forum Advisor Prod
Hi Vinutha, You should be able to use this something like: campaign.bidding_strategy_type = client.get_type('BiddingStrategyTypeEnum').MANUAL_CPM I'm not sure from the email if this alone addresses your issue, so if there are more issues, feel free to let me know. Cheers Anash

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-05 Thread Vinutha Nayak
Hi, Could you please help the same with python ? As you can see from my code above, it's python. I tried to check different forums and even github to find the right syntax, but there is no hint of anything anywhere. Could you please point me to right way of doing it in python ? If not ,

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-05 Thread Google Ads API Forum Advisor Prod
Hello Vinutha, You will be able to set the Manual CPM bid strategy using the ManualCpm builder. Please find the code snippet below in Java as a reference: Campaign.newBuilder() .setName(StringValue.of("Interplanetary Cruise #" + System.currentTimeMillis()))

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-05 Thread Vinutha Nayak
Hi, Can you just let me know how to set manual_cpm field in that case ? *campaign*.*campaign_bidding_strategy*.*manual_cpm = "ManualCpm".* *campaign.manual_cpm = "ManualCpm".* I tried to set as above, but both are not working. I want to set* Standard Manual CPM bidding strategy.* Thanks

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-04 Thread Google Ads API Forum Advisor Prod
Hello Vinutha, Thank you for clarifying this. The bidding strategy field is a read-only field and you will not be able to set this. A bidding strategy can be created by setting either the bidding scheme to create a standard bidding strategy or the bidding_strategy field to create a portfolio

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-04 Thread Vinutha Nayak
Hi, Can anyone help please ? Thanks and Regards, Vinutha On Tuesday, 4 June 2019 09:58:14 UTC+5:30, Vinutha Nayak wrote: > > Hi , > > I would like to understand how am I setting both Manual CPC and Manual CPM > bid strategies ? Since I have shared the code, could you please point out >

Re: Setting Bid Strategy through API brings up different one in UI

2019-06-03 Thread Vinutha Nayak
Hi , I would like to understand how am I setting both Manual CPC and Manual CPM bid strategies ? Since I have shared the code, could you please point out what is causing both of the bidding strategy to be set ? campaign.manual_cpc.enhanced_cpc_enabled.value = False

RE: Setting Bid Strategy through API brings up different one in UI

2019-06-03 Thread Google Ads API Forum Advisor Prod
Hello Vinutha, Based on the code snippet shared, it looks like you are setting both Manual CPC and Manual CPM bid strategies. You will be able to set either the Portfolio Bid strategy using the bidding_strategy field or the Standard bid strategy by setting the bidding scheme. Please refer to

Setting Bid Strategy through API brings up different one in UI

2019-06-03 Thread Vinutha Nayak
Hi, I have used the following setting in my code : # Set the bidding strategy and budget. campaign.manual_cpc.enhanced_cpc_enabled.value = False campaign.campaign_budget.value = campaign_budget_response.results[0].resource_name campaign.bidding_strategy_type =