How to update demographic negative by Google Ads API v7

2021-05-18 Thread Rukeith Tseng
Hi, does it have any way to update demographic negative fields ? In Google Ads UI, the age range '45to55' of a ad group is exclude. I want to switch to Enable. I have try to update to negative field, the API show it's immutable. So I try to delete it first then create. But I found it still not

How could I get audience data by Google Ads API?

2021-05-13 Thread Rukeith Tseng
How could I get the audience data by Google Ads API? Here is the screenshot that I want to get the data. How could I get the audience list? And How could I get which audiences are at the ad group or campaign? [image: Screen Shot 2021-05-13 at 15.08.30.png] -- --

Could Google Ads API create campaign group?

2021-04-22 Thread Rukeith Tseng
I found adwords API could create campaign group. Could Google Ads API create campaign group too? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this

Re: How could I update campaign bidding strategy with standard bidding strategies

2021-01-21 Thread Rukeith Tseng
Hi, I know that. What I ask for is how could I set MaximumConversionValue without target_roas? Does it have any python examples? It's not successful while I set bidding_strategy field directly. On Friday, January 22, 2021 at 4:14:18 AM UTC+8 adsapiforumadvisor wrote: > Hello, > > The

Re: How could I update campaign bidding strategy with standard bidding strategies

2021-01-20 Thread Rukeith Tseng
Hi Anthony, I know this doc. But I want to set MAXIMIZE_CONVERSION_VALUE without the setting target_roas. What is like Google Ads UI. On Tuesday, January 19, 2021 at 10:34:40 PM UTC+8 adsapiforumadvisor wrote: > Hello, > > You will need to update the campaign_bidding_strategy >

How could I update campaign bidding strategy with standard bidding strategies

2021-01-19 Thread Rukeith Tseng
I found this document link . Standard bidding strategies don't have python example. How could I update the campaign bidding strategy with standard bidding strategies? -- --

Re: How could I set bidding strategy to TARGET_SPEND

2020-11-18 Thread Rukeith Tseng
Hi, I have tried a few ways to enable TARGET_SPEND, but it still not work. 1. campaign.target_spend.target_spend_micros = 1000 2. campaign.target_spend = Ture 3. campaign.target_spend = Ture fm = protobuf_helpers.field_mask(None, campaign) fm.paths.append("target_spend")

Re: How could I set bidding strategy to TARGET_SPEND

2020-11-17 Thread Rukeith Tseng
Sorry about my description. I am using the Google Ads API not the old Adwords API. I could not figure out the method to set the bidding strategy from the code snippet. adsapiforumadvisor 在 2020年11月18日 星期三上午4:15:50 [UTC+8] 的信中寫道: > Hi Rukeith, > > Thank you for reaching out. This code snippet >

How could I set bidding strategy to TARGET_SPEND

2020-11-16 Thread Rukeith Tseng
I want to set my campaing's bidding strategy to TARGET_SPEND. Unfortunately, I couldn't find any examples for this. I set campaign.bidding_strategy_type = client.get_type("BiddingStrategyTypeEnum", version="v6").TARGET_SPEND But it didn't work. How could I set bidding strategy to TARGET_SPEND?

Re: How to set bidding strategy to MANUAL_CPC without

2020-10-28 Thread Rukeith Tseng
I have posted the issue on GitHub. Any on one response?? Does it have any info? adsapiforumadvisor 在 2020年9月15日 星期二上午3:20:03 [UTC+8] 的信中寫道: > Hi Rukeith, > > If the screenshot is of the results of the API request, it looks like the > Enhanced CPC option is not selected, which means the API

Re: How to set bidding strategy to MANUAL_CPC without

2020-09-13 Thread Rukeith Tseng
Hi, the sample code is on my first post and the code works fine. It didn't show up any error. But the bidding strategy of the campaign didn't change. I want the campaign's bidding strategy set to this. Manual CPC without enhanced. [image: 截圖 2020-09-14 11.03.30.png] adsapiforumadvisor 在

How to set bidding strategy to MANUAL_CPC without

2020-09-10 Thread Rukeith Tseng
Here is my example ``` def main(client, customer_id, campaign_id): campaign_service = client.get_service("CampaignService", version="v5") # Create campaign operation. campaign_operation = client.get_type("CampaignOperation", version="v5") campaign = campaign_operation.update

Re: How to use google ads api python to update keyword text value?

2020-03-16 Thread Rukeith Tseng
third column, Mutable, tells you whether you can mutate that specific > ad type. For example a TextAd is not mutable but a ExpandedTextAd is. > > -David > > On Sunday, March 15, 2020 at 11:30:30 PM UTC-4, Rukeith Tseng wrote: >> >> I am trying to update keyword text value

How to use google ads api python to update keyword text value?

2020-03-15 Thread Rukeith Tseng
I am trying to update keyword text value via google ads api python sdk. Here is my sample code import argparse import sys from google.api_core import protobuf_helpers from google.ads.google_ads.client import GoogleAdsClient from google.ads.google_ads.util import ResourceName def main(client,

Re: How to update existing keyword text using adwords php client library

2020-03-15 Thread Rukeith Tseng
Your example did not match the question. The example cannot update keyword text only for stauts. On Wednesday, 26 February 2020 02:19:17 UTC+8, adsapiforumadvisor wrote: > > Hi Mohsin, > > Thank you for reaching out. It is possible to update an existing keyword. > You can follow this example >