Can't update campaign bidding strategy.

2021-03-06 Thread Dmitriy P.
Hi! I have problem with update 'search' campaign bidding strategy... *This example working fine* (no errors in log) campaign_operation = client.get_type("CampaignOperation", version="v6") bidding_strategy_type_enum = client.get_type("BiddingStrategyTypeEnum", version="v6")

How to remove (set to NULL) "tracking_url_template"?

2021-01-18 Thread Dmitriy P.
How to remove (set to NULL) "tracking_url_template"? campaign_service = client.get_service("CampaignService", version="v6") campaign_operation = client.get_type("CampaignOperation", version="v6") campaign = campaign_operation.update campaign.resource_name =

Re: Campaign schedule

2020-12-13 Thread Dmitriy P.
... Python On Sunday, 13 December 2020 at 19:23:12 UTC+3 Dmitriy P. wrote: > Hi! > How I can create schedule for campaign at Google Ads API v6? > > [image: Screenshot 2020-12-13 at 19.18.41.png] > > Thanks in advance! > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Campaign schedule

2020-12-13 Thread Dmitriy P.
Hi! How I can create schedule for campaign at Google Ads API v6? [image: Screenshot 2020-12-13 at 19.18.41.png] Thanks in advance! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/

Campaign type

2020-11-09 Thread Dmitriy P.
Hi! How I can get 'Campaign Type' (Ads API)? Screen attached. Thank you in advance! [image: Screenshot 2020-11-09 at 16.58.11.png] -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/

Re: How to detect - Ad REMOVED

2020-10-28 Thread Dmitriy P.
Thanks for answer! Please, tell me, how I can detect resource status is 'REMOVED'? Because 'change_status' return only 'resource status: CHANGED' And I don't know 'ENABLED' or 'REMOVED' On Wednesday, 28 October 2020 at 10:52:36 UTC+3 adsapiforumadvisor wrote: > Hi, > > I appreciate your

Re: How to detect - Ad REMOVED

2020-10-21 Thread Dmitriy P.
Sorry^ bu this option is disabled... How i can fix this? [image: Screenshot 2020-10-21 at 14.04.27.png] PS: --- ADS_PAGE_SIZE = 100 def get(customer_id, ads_client): ads_service = ads_client.get_service("GoogleAdsService", version="v5") query = """ SELECT

Re: How to detect - Ad REMOVED

2020-10-20 Thread Dmitriy P.
I need detect CHANGE STATUS in Google Ads API)) query = """ SELECT change_status.resource_name, change_status.last_change_date_time, change_status.resource_type, FROM change_status WHERE change_status.resource_status = 'REMOVED' ORDER BY

How to detect - Ad REMOVED

2020-10-19 Thread Dmitriy P.
Hi! How I can detect when Ad is *REMOVED* for update status on our side db? I'm try *SELECT WHERE* change_status.resource_status = '*REMOVED*' but not success. Maybe any another way to detect when Ad was removed? Thank you in advance! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: Daily rate limits

2020-10-19 Thread Dmitriy P.
Thank you!) On Monday, 19 October 2020 at 22:33:43 UTC+3 adsapiforumadvisor wrote: > Hi Dmitriy, > > Thanks for reaching out. Please see below for my response to each example > you provided: > > search_response = google_ads_service.search(customer_id, query=query, > page_size=500) > > - This

Re: Daily rate limits

2020-10-19 Thread Dmitriy P.
Thank you Peter! I'm already read this guide , but don't understand: The '*get_service*', '*get_campaign*', '*get_type*' is the same *GET* query with daily limit 1000 For Enums '*get_type*' daily limit is same - 1000? On

Daily rate limits

2020-10-18 Thread Dmitriy P.
Hi! Can you tell me, what operations include in daily limits: *# This id 1 operation?* search_response = google_ads_service.search(customer_id, query=query, page_size=500) *# This id 1 operation?* campaign_service = ads_client.get_service('CampaignService') request =