Requesting Identity Verification Info

2024-04-22 Thread Seán Hayes
I want to test getting info from an account, namely if the account still requires advertiser verification to be completed. The docs do not have a python example in them (yet) but the functionality appears to exist in the python-repo for Google Ads API. I have this basic code written for verifyi

Getting L7D metrics for an Asset Group

2023-10-25 Thread Seán Hayes
Hello In v15, I can now query the `asset_group ` resource for metrics such as the number of impressions, clicks, cost, etc at the Asset Group level. However, I find I cannot segment that information by date. e.g. Retrieve L7

How to add URL Rules using the API?

2023-09-21 Thread Seán Hayes
Hi I have an asset group I want to add some URL rules to, namely "If this term appears in the URL, match it to these assets.". I've been looking for the equivalent way to set them up in the API but it seems very unclear. Here is a screenshot of the functionality on the web UI. -- -- =~=~=~=

Account eligibility for Image Assets

2022-11-25 Thread Seán Hayes
Hello Is it possible to look up in the API what accounts are currently eligible for adding image extensions too? While I am aware of the eligibility rules defined here , I am asking if there is a scalable way to check across hundreds

Re: Are Ad Customizer Attributes availiable in the API yet?

2022-04-01 Thread Seán Hayes
I don't have that option so an email has been sent along with a link to this chat. On Friday, April 1, 2022 at 3:55:31 AM UTC+1 adsapi wrote: > Hi Seán, > > Thank you for the reply. > > To further investigate the issue, could you provide a screenshot of the > whole UI where we can see the reaso

Does deleting a Feed delete its underlying feed items

2022-03-31 Thread Seán Hayes
Hi Another Ad customizer question. I'm migrating to RSA Ad customizers and had an older data feed that only applied customizers to ETAs. While setting up the RSA Ad customizers I seemed to have hit the account limit for customizers/feed items. I had deleted the older data feed (i.e. the non-

Re: Are Ad Customizer Attributes availiable in the API yet?

2022-03-31 Thread Seán Hayes
Thanks, that clarifies things a bit. One thing is that with the feed_item data is that it had a "policy_infos" attribute I could query to see if the feed mapping was dissaproved for any reason (customizer text values containing bad language, for example). This does not seem to be available for

Questions about Ad Customizers with regards to RSAs

2022-03-23 Thread Seán Hayes
Hello I have been working with ad customizers in my account and have set up a feed for them. The ad customizers have three main attributes and the aim is to have one customizer for every KW in my account (>3M) However, in practice I seem to be misunderstanding how this approach would work with

Are Ad Customizer Attributes availiable in the API yet?

2022-03-22 Thread Seán Hayes
Hello I uploaded some Ad Customizers for RSA's into my account. They are present in the account and I can see them if go into "Business Data" -> "Ad customizer attributes". I see the number of them listed as well as how many Ads are currently using them. Is it possible in the API to get a repo

Getting Headline Suggestions off of the API instead of the web UI

2021-04-19 Thread Seán Hayes
Hi When I go to edit an Ad in Google Ads, I can see suggestions for Headlines that include popular keywords I can append to the ad to increase Ad strength. This section is underneath the "Ad Strength" part of the edit page. Are these values available through the API in any capacity. I would l

Re: Questions when creating a CallOnlyAd

2020-10-15 Thread Seán Hayes
To make it clear, I want to create a CallOnlyAd object. Here is my sample code for reference (Python) # Create the ad group ad. ad_group_ad_operation = client.get_type("AdGroupAdOperation", version="v5") ad_group_ad = ad_group_ad_operation.create ad_group_ad.status = client.get_type("AdGroupAdSta

Questions when creating a CallOnlyAd

2020-10-14 Thread Seán Hayes
Hi I'm trying to create an Ad using the v5 Google-Ads API (through python) but am running into some issues: 1: I cannot seem to set the Final URL on Ad creation and need to skip it. I am using the path: ad_group_ad.ad.final_urls.append('https://example.com') but I get an error back saying: Re

Re: Including the Keyword Seed when using the KeywordPlanIdeaService

2020-08-25 Thread Seán Hayes
Apologies but I cannot seem to reply privately, it says I do not have permission? I set up Firefox and Chrome to use Gmail for mailto links but the option to reply to author is still greyed out for me with the same error. Is there an email address you could send me privately so I can reply back

Including the Keyword Seed when using the KeywordPlanIdeaService

2020-08-24 Thread Seán Hayes
Hi I have a python script that will take a list of seed keywords and query the Targeting Idea Service API to generate a list of related keywords with their competition metrics. If I pass multiple keywords as a list of Keyword Seeds, I will get competition metrics for those keywords, but there

Error when trying to set a Bid Modifier within an Ad Groups Age Range

2018-01-09 Thread Seán Hayes
Hello, I am trying to SET a bid modifier depending on the Age Demographic through the AdGroupCriterionService. i.e. 10% bid adjustment for 18-24, -10% for 35-44. This is being done through a Python script and I know this is possible as an example of such is outlined here

CustomerSyncService not returning any details on changes to Campaigns.

2016-02-17 Thread Seán Hayes
Hello I am using a python script to retrieve removed keywords from an account over a period of time. From what I have been told, CustomerSyncService is the way to go for this. I am using the example from this page