PMax Placements via Google Ads API

2024-04-01 Thread Angel Simancas
Hello, We have been able to get PMax Placements data via API for quite some time, however it seems it is not available anymore, at least since last week. Does anyone know why it changed? Is there any workaround to get this data again? Thanks! -- --

Upgrading to V15

2024-02-06 Thread Miguel Angel Garcia
Hi, My app was working OK a few weeks ago, but now it's giving me the error "*Version v13 is deprecated. Requests to this version will be blocked.*" So I updated the Google Ads API for Python (using "*pip install --upgrade google-ads*"). Now I have the latest version installed, but the app

Re: CUSTOMER_NOT_ENABLED

2023-08-11 Thread Miguel Angel Garcia
In my API query, I'm using the filter: WHERE customer_client.status = 'ENABLED' But I still get: authorization_error: CUSTOMER_NOT_ENABLED message: "The customer account can\'t be accessed because it is not yet enabled or has been deactivated." Is that the correct filter? Or do I have to

Re: Get the names of the customer accounts using listAccessibleCustomers

2023-08-09 Thread Miguel Angel Garcia
don't understand, because it should be automatically showing the accounts that the user has permission to access, I'm not giving those accounts/IDs manually). On Wednesday, August 9, 2023 at 8:11:45 AM UTC+2 Miguel Angel Garcia wrote: > OK, and what about the second part of my message? > > *If

Re: Get the names of the customer accounts using listAccessibleCustomers

2023-08-09 Thread Miguel Angel Garcia
OK, and what about the second part of my message? *If listAccessibleCustomers is not going to provide account names anytime soon, can you at least provide code examples of how to get that info in the most efficient and reliable way possible (I need it for Python).* On Tuesday, August 8, 2023

Re: Get the names of the customer accounts using listAccessibleCustomers

2023-08-08 Thread Miguel Angel Garcia
Any updates on this? Seems like a pretty frequent need (I've found several threads about this in this forum and other websites). If listAccessibleCustomers is not going to provide account names anytime soon, can you at least provide code examples of how to get that info in the most efficient

RE: requirements for app (required minimum functionality)

2023-05-09 Thread Miguel Angel Garcia del Valle
Thanks for replying, but that answer it's not helpful at all. I've already read that text (I even linked it in my question), but I explained very specific questions about it (that you haven't addressed at all). My app doesn't even have columns (it doesn't show traditional reports with

Requirements for app (Required Minimum Functionality)

2023-05-08 Thread Miguel Angel Garcia
A year ago I created an "app" based on Google Ads API that I use to detect errors and opportunities in the ad campaigns that I manage (things like "show an alert if a campaign has spent +$1000 and delivered 0 conversions"). I've been using it only internally (just myself), but I'm considering

Best way to compare dates?

2022-11-30 Thread Miguel Angel Garcia
Hi, I want to compare data between 2 date ranges. For example, I want to show in a table how many clicks certain campaigns had in the last 30 days VS the previous 30 days (I'm interested also in other date ranges, not just this example). What is the best way to do this using the API? I guess

Re: Improve incident reporting for Google Ads API on dedicated Google Ads status page

2022-10-02 Thread Grace Angel
+1 to this request! On Friday, 30 September 2022 at 15:06:38 UTC+10 Robert Heise wrote: > Dear Google Ads API team, > > on September 27 and 28th Google Ads API had a major outage as reported and > discussed in following forum threads: > >-

API requests timing out

2022-09-27 Thread Grace Angel
Hello, This morning, we are experiencing critical delays with Google Ads API calls, they are either timing out (the API calls usually take less than 1 minute, but the requests are taking a ver long time to come through or is just stuck) or we get the following error: Response --- Headers:

Best way to create reports at Manager/MCC level?

2022-08-18 Thread Miguel Angel Garcia
I want to create API reports that show data from each account that I manage (using a Manager account). For example, show the number of clicks that each account got in the last 30 days. This is pretty easy in the UI and a very common use case, so I assume it should be easy too to do with the

Check status of offline job updating on a resource

2022-08-03 Thread Angel Cordova
How can I check if an a resource is being updated by an offline job to avoid a concurrent modification error response? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: Get the list of Customer IDs under a Manager account

2022-07-27 Thread Miguel Angel Garcia
Thanks for the detailed response, but it sounds super confusing to me. Probably my fault, not yours. I want the top left - middle accounts drop down (accounts under my MCC), so I guess I have to use https://developers.google.com/google-ads/api/docs/account-management/get-account-hierarchy, right?

Get the list of Customer IDs under a Manager account

2022-07-26 Thread Miguel Angel Garcia
I want to get info (just for reporting) of all the customers that are being managed by my Manager account. I'm specially interested in getting a list of all the Customer IDs, but having other extra info and stats would be nice too. I've tried with

Check active rules using the API

2022-07-24 Thread Miguel Angel Garcia
Hi, is there a way to check the Automated Rules (https://support.google.com/google-ads/answer/2472779?hl=en) that are active in an account with the API? Just for reporting, not for changing them. Thanks! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

Reports for "Ad rotation" don't work

2022-07-22 Thread Miguel Angel Garcia
I'm trying to show the "ad rotation" settings on a report (using Google Ads API). I don't see any ad rotation API field on the campaign level (where we set that in the UI). I see an ad rotation field on the ad group level

Any examples or explanations to automate changes based on certain conditions?

2022-07-03 Thread Miguel Angel Garcia
*Any examples, tutorials or tips to use the API to automate changes based on certain conditions?* *For example: Pause all ads that have less than 100 clicks in the last year.* This kind of automation is a very common use case. And there are a lot of Google Ads Scripts for these automations

How are examples supposed to be used

2022-06-28 Thread Miguel Angel Garcia
I'm a programming beginner and I'm struggling to make sense of your official docs and examples. I've managed to configure the Oauth process, but I don't really understand how to use the code examples from the client libraries to make a real website/app. For example, I want to show the

Re: Recommended Python library for Oauth

2022-06-27 Thread Miguel Angel Garcia
Thanks, but I don't think so. As I've mentioned, I'm not using that Python client library at all, so they are probably going to say that is not their concern either. I guess I have to look for another place to ask. Any other suggestions? On Mon, Jun 27, 2022 at 4:29 AM Google Ads API Forum

Recommended Python library for Oauth

2022-06-24 Thread Miguel Angel Garcia
I'm having trouble configuring Oauth with Python/Django and I would prefer to use a good library instead of my custom code. I want to use the Google Ads REST API (not gRPC and client libraries). I've seen that the Google API Python Client (the generic client, not the specific for Ads)

Re: Problem with generate_user_credentials.py

2022-06-23 Thread Miguel Angel Garcia
So the API examples are designed to be run as "independent files", not to use their functions inside a Python/Ruby/whatever app? On Wednesday, June 22, 2022 at 7:59:06 PM UTC+2 adsapi wrote: > Hi Migual, > > Thank you for reaching out to the Google Ads API support team. > > With regards to your

Problem with generate_user_credentials.py

2022-06-22 Thread Miguel Angel Garcia
I'm following the instructions on https://developers.google.com/google-ads/api/docs/client-libs/python/oauth-web to generate the refresh token The instructions says to run "generate_user_credentials.py ..." in the terminal, but all my terminals (VS Code, command prompt, Powershell) says

Certain metrics not showing in the reports

2022-06-13 Thread Miguel Angel Garcia
There are certain metrics that don't show in my API reports when I request them. It doesn't matter if their values are 0 or something else, they never show up. The query works OK (no errors) and the official query validator says it's OK. So far, the metrics that I've detected that don't

Date filters/ranges

2022-06-10 Thread Miguel Angel Garcia
Is there a way to filter API reports by dates using ranges such as LAST 90 DAYS, LAST 12 MONTHS or ALL TIME? I know there are some predefined ranges (such as LAST_30_DAYS), but those are too limited for me. And putting

Count instead of listing elements

2022-05-24 Thread Miguel Angel Garcia
Hi, Instead of getting a list of elements, I want only the count of those elements. For example, instead of getting a list of 30 keywords, I just want to receive the number "30". Is there a way to do this using the API? I've tried with SELECT COUNT(), but it gives me "Error in query:

Beginner question: Start with API or scripts?

2022-05-15 Thread Miguel Angel Garcia
I do Google Ads consulting and I want to learn programming (basically to automate tasks, but also just to learn while creating useful stuff). Should I start by creating scripts or directly using the API? I guess scripts should be easier, but if learning the API will bring something extra (more

authorization_error: User doesn't have permission to access customer

2022-04-27 Thread Miguel Angel Calleja
Hi PHP 8 Google Ads V9 => 13.0.0 Im getting the Customer Manager Links from my account 6765096429: Array ( [resource_name] => customers/6765096429/customerManagerLinks/2508518472~216663108 [status] => ACTIVE [manager_customer] => customers/2508518472

GEO_PERFORMANCE_REPORT is not matching against User Locations Report

2020-05-13 Thread Angel Jaime
Hi there, I am working with the GEO_PERFORMANCE_REPORT in order to fetch data related to the account locations. More specifically, the report I am working with is the User Locations Report

Re: How to populate an audience with multiple CONTACT_INFO keys (python SDK)

2019-12-19 Thread Angel
9f47cb48d8/examples/adwords/v201809/remarketing/add_crm_based_user_list.py The equivalent examples in other languages do the same thing. Are the samples not valid? If they are valid, what's the difference between Tristan's "reformatted" code and the sample? Thanks, Angel On Tuesday, Septembe

Can the Adwords API and the Google Ads API at the same time?

2019-11-04 Thread Angel
Is it possible to use the Adwords API and Ads API with the same credentials, on the same Management account, at the same time? I'm worried agreeing to the T of Ads API will prevent me from using the Adwords API. (I really doubt it but I'd rather be safe than sorry) -- --

Re: Recovering missed refresh token

2018-03-06 Thread Angel Lubenov
). Is there a way to get this behavior? Thanks, On Tuesday, March 6, 2018 at 1:19:52 AM UTC-3, Peter Oliquino wrote: > > Hi Angel, > > Could you confirm if you are generating OAuth2 credentials for an AdWords > account? If yes, you can follow the steps mentioned in this

Recovering missed refresh token

2018-03-05 Thread Angel Lubenov
Hi!, this is my situation I am making a web-app, it starts the authorization/authenthication flow with oAuth (https://accounts.google.com/o/oauth2/v2/auth) with the following parameters: access_type = offline, and scope = openid email. The first authorization process ends up fine returning all

ReportDownload API and Pagination

2018-01-16 Thread Angel Lubenov
So I'm using the Report Download API to get a huge amount of data (the AWQL ask data from AUTOMATIC_PLACEMENTS_PERFORMANCE_REPORT with no date filter (ALL_TIME)). The network gziped connection traffic is about 64 MB but the uncompressed information represents 1.7 GB, it makes my browser

Overdelivery basic report API endpoint

2018-01-09 Thread Angel Lubenov
Hi!, I'm trying to get via the API the OVERDELIVERY (present in the UI: Reports -> Basic -> Overdelivery). I can't find any reference in the documentation regarding this report, Is this endpoint supported? does it have a different name? Thanks in advance! -- --

ConversionTrackerId xmlAttribute for CREATIVE_CONVERSION_REPORT

2018-01-09 Thread Angel Lubenov
Hi!, By using the report-definition-service endpoint, when I request information about the CREATIVE_CONVERSION_REPORT table, I got that the XMLAttribute for "ConversionTrackerId" does not match with the API's response for the report-download endpoint. Report Definition Service informs

accept invitation

2017-12-05 Thread angel . ortiz
I want to create a service where a client with an existing adwords account can be linked to my MMC account in the following way: There is a button that when clicked, shows a popup window where the user authenticates and accepts the link. Can you do this? So far as I read in the documentation

doubts about RateLimits

2017-11-14 Thread angel . ortiz
I have a basic MMC account and i am building an api rest to manage the ads, ad groups and campaigns, what limits I would have for my operations and requests, and what risks there are of exceeding those limits, Do you recommend that I activate this compelement https: /

where I approve ThirdPartyRedirectAd?

2017-10-24 Thread angel . ortiz
I tried to create a ThirdPartyRedirectAd but sent me this error "AdError.CUSTOMER_NOT_APPROVED_THIRDPARTY_REDIRECT_ADS". where I approve this type of ads? my code: ThirdPartyRedirectAd thirdPartyRedirectAd = new ThirdPartyRedirectAd(); thirdPartyRedirectAd.setName("Example third party ad #" +

Re: CustomerService --> getCustomers returning just one Customer

2017-01-20 Thread Angel Lubenov
Great!, Thanks a lot for your help!!! On Friday, January 20, 2017 at 1:24:05 PM UTC-3, Shwetha Vastrad (AdWords API Team) wrote: > > Hi Angel, > > You need to use ManagedCustomerService > <https://developers.google.com/adwords/api/docs/reference/v201609/Mana

Re: CustomerService --> getCustomers returning just one Customer

2017-01-20 Thread Angel Lubenov
Oh :-( I really was looking for getting the client accounts under my account. *Is there any API-endpoint to get the information about the client accounts under my manager account? * Thanks in advance (again :-) ) Angel On Thursday, January 19, 2017 at 8:04:49 PM UTC-3, Shwetha Vastrad

CustomerService --> getCustomers returning just one Customer

2017-01-19 Thread Angel Lubenov
Hi!, This is the situation: I am connecting to the API with my manager account, I want to retrieve all the accounts information, I am making the request without the clientCustomerId parameter, but I got just one client information (me) and not all the clients as the documentation says.

How to fetch all ip blocked in a campaign with PHP

2016-09-30 Thread Angel Guzman Maeso
I develop a script using BatchJobService and CampaignCriterionOperation for add ips to be excluded in a adwords campaign. My problem is that I get a list of ips every day,

Re: Migration to v201603 error

2016-07-11 Thread Miguel Angel Calleja
til/v201605/ReportUtils.php#L26> > ? > If you're still faced with the issue, could you please send your full > source code? > (If it's private, please send by *Reply to author privately*) > > Best, > Thanet, AdWords API Team > > On Saturday, July 9, 2016 at 2:19:38 AM

Re: Migration to v201603 error

2016-07-08 Thread Miguel Angel Calleja
I have the same problem... I had to require ReportUtils.php but I get an other error: PHP Notice: Undefined property: importar_adwords::$adsUtilityRegistry in /mnt/webapps/trunk/lib/googleapi/googleads-php-lib-10.0.0/src/Google/Api/Ads/AdWords/Util/v201605/ReportUtils.php on line 77 Any

Sair do grupo

2016-01-26 Thread Dark Angel
Boa tarde, Gostaria de cancelar a minha inscrição no grupo. Agradeço muito as informações aqui encontradas, foram de grande ajuda. No momento não estou mais trabalhando nesta área, por esse motivo estou solicitando o cancelamento. Desde já agradeço. -- --

Dynamic remarketing without Google Merchant Center

2014-05-22 Thread Miguel Angel Lázaro Pérez
Hello to the community and thank you in advance for your help: I have a web about online courses and masters and I would like to implement the functionality offered by the dynamic Remarketing. I just dismiss the feed on my Google Merchant Center account because the elements refer to services

Re: How do I generate a SOAP call/trace using .NET?

2013-12-03 Thread Angel Armando Adinolffi
Hello, Look at this blog, we provide another example of how to do that. http://www.systemdeveloper.info/2013/11/trace-soap-requestresponse-xml-with.html I hope you find it helpful El jueves, 6 de abril de 2006 18:35:06 UTC-4, briguy escribió: I'm using VB.NET to use the Google API and I want

Re: We are getting UNEXPECTED_INTERNAL_API_ERROR while downloading site likns report using 201302

2013-07-17 Thread Angel
HI Paul, Thanks for your response. I have already tried this and still we are getting same error that is InternalApiError.UNEXPECTED_INTERNAL_API_ERROR. can you please help us on this. Thanks in advance. On Tuesday, July 16, 2013 10:18:52 AM UTC-4, Paul Matthews wrote: Hi Angel, Looking

We are getting UNEXPECTED_INTERNAL_API_ERROR while downloading site likns report using 201302

2013-07-12 Thread Angel
Hi , Till last wee were able to download sitelinks report successfully but from past 3 days we are unable to download sitelinks reports for a particular client account. We are getting unexpected_internal_api_error. For other client accounts we are able to download successfully.

AuthorizationError.USER_PERMISSION_DENIED while downloading Sitelinks report.

2013-02-05 Thread Angel
Hi, I am getting AuthorizationError.USER_PERMISSION_DENIED while downloading Sitelinks report. Can anybody suggest any solution. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com

Re: How to access LogPath property from AppconfigBase

2013-02-03 Thread Angel
I are application we are also downloading Site links reports as well which makes soap call. Earlier using v14.7 we used these setters to log into log file. Thanks in advance On Sunday, February 3, 2013 10:59:12 PM UTC-5, Anash P. Oommen (AdWords API Team) wrote: Hi Angel, The setter

How to access LogPath property from AppConfigBase in v201209

2013-01-30 Thread Angel
Hi All, Recently we have migrated to new version of AdWords Api v201209 and I am running into issues. major difference after adding new .net dll's in are solution is public AdWordsUser(AppConfigBase config, Dictionarystring, string headers); is not present in new version in our

Re: new to Adword Api v201209

2013-01-30 Thread Angel
Hi Anash, I went thought the link you provided in your reply. I downloaded awapi_dotnet_lib_src_v15.3.0 but unable to locate Google.Ads.Common.dll and Google.AdWords.dll in this folder. Can you please help us with this. Regards, Angel On Monday, January 28, 2013 10:32:16 AM UTC+5:30

How to access LogPath property from AppconfigBase

2013-01-30 Thread Angel
Hi, Can anybody suggest me how can i use LogPath property from appconfigbase.cs. access modifier of Set is protected. I want to set value to this . can you please suggest me hoow can i achieve this. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

new to Adword Api v201209

2013-01-27 Thread Angel
HI All, Currently in our application we are using ~\awapi_dotnet_lib_src_v14.7.0\lib\Google.Ads.Common.dll ~\awapi_dotnet_lib_src_v14.7.0\lib\Google.AdWords.dll as per the news api version 201206 will be depricated by feb 26. can anybody tell me what will be the new verion of api will it be