RE: Question about lookup_location.py

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Arnab, The LocationCriterionService, which is used in the look up location example, currently only returns limited information, such as only those related to the input. It does not, unfortunately, have the ability to return more advanced searches (retrieve all supported Country type location

RE: AuthorizationError.USER_PERMISSION_DENIED error which trying to setup Google Ads API

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Maruti, Thanks for posting your concern. The USER_PERMISSION_DENIED error in the AdWords API indicates that you might be using OAuth2 credentials that does not have access to the (clientCustomerId) account you are authenticating with. To resolve this error, you will need to use the OAuth2 c

RE: Can I change the bid for all keywords at once?

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Mahir, You can update the bid of a keyword using AdGroupCriterionService. Please refer to this example in Java for more details. Same example is available in other client libraries as well. If you would like to update bid for multiple keywords, you may use the BatchJobService to group multip

RE: Universal app campaign not working

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Imran, OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE error usually occurs when the operation is not permitted on the campaign type. Since you are trying to create a mobile app campaign, you may refer to this blog post and you may need to update your code based on the change

RE: Campaigns in Google Ads not consuming budget after July 17, 2019.

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi, So I can look into the issue further, could you provide your Google Ads account ID and the campaign IDs belonging to that account which you reported are not performing, and therefore not consuming the budget? You may send your reply using the Reply privately to author option. Thanks and re

RE: How to create and select all textassets?

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Suresh, Thank you for contacting support. Unfortunately, we do not have an exact sample code that on how to create TextAsset using the AssetService. However, you can refer to this sample code (also available in different languages) on how to create responsive search ads. This guide includes

Update on Campaign IDs and Budget IDs as 64-bit in Google Ads affect Hubspot connection?

2019-08-07 Thread Juan Carlo Calingo
Hello, We have our organization's Google Ads connected to our Hubspot platform for Ad tracking and reporting. Will the change on Campaign IDs and Budget IDs as 64-bit in Google Ads affect the Hubspot connection at all? Appreciate any feedback. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

AuthorizationError.USER_PERMISSION_DENIED error which trying to setup Google Ads API

2019-08-07 Thread Maruti Borker
Hi All, Trying to setup google apis but unable to get past the AuthorizationError.USER_PERMISSION_DENIED error. Here is what I have done :- 1) I have an MCC account 966-016-0039 2) I have an ads account 361-706-3872 3) And this MCC account and ads account are linked. My account ( mar...@cue

Campaigns in Google Ads not consuming budget after July 17, 2019.

2019-08-07 Thread Nazmain Apps
Hi, Can anyone tell me, Why Campaigns in Google Ads are not consuming budgets after July 17. 2019. Is there any update regarding this? Am i missing some important thing? Because Ads were running in a smooth way before the above mentioned date. Kindly help me in this matter. Thank you -- --

how to get the keywordPlanId for api call

2019-08-07 Thread Edwin
i am using the com.google.ads.googleads.v2.services.KeywordPlanServiceClient.generateHistoricalMetrics(String keywordPlan) to retrieve the historical stat data. but i don't know how to get the keyword plan id for the parameter. and in the example com.google.ads.googleads.examples.planning.Ge

Question about lookup_location.py

2019-08-07 Thread Arnab Ganguly
How do I get the location of all countries supported from lookup_location.py present under (googleads-python-lib/examples/adwords/v201809/targeting/lookup_location.py )? Currently I put the country names, run the script and get the details from the output. Thanks, -A -- -- =~=~=~=~=~=~=~=~

Re: ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Oksana, There are no specific recommendations for delay and number of attempts to download the report successfully. You just have to make sure that you are not downloading a report that is too large. You can ensure this by reducing the selected fields, adding more conditions, or by using a s

RE: INVALID_FUNCTION_FOR_FEED_WITH_FIXED_SCHEMA error for matchingFunction of AdGroupFeed

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Sabrina, My apologies for the delayed responses and for the inconvenience. Our team is still looking into this issue. Rest assured that we will provide updates when available. Regards, Ejay Google Ads API Team ref:_00D1U1174p._5001UEIDGL:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

RE: AdWords Scope?

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Marcos, Thanks for your reply in this thread. However, since this thread is old already, you can make a new post on this forum so that we can better track your concern. Also, please elaborate the issue and provide more details in the new forum post. Regards, Ejay Google Ads API Team ref:_00

Re: AdWords Scope?

2019-08-07 Thread Marcos Gil Fuertes
That link doesn't work anymore :( -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and

RE: Setting Campaign Level Conversion Action

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hello, You may use the SelectiveOptimization to set the optimization settings in the Google Ads UI. Please find below the code snippet to set the conversion tracker: SelectiveOptimization optimize = new SelectiveOptimization(); optimize.setConversionTypeIds(new long[] {257993218L}); campaign.se

RE: fetching Conversion Actions list

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Michele, The AdWords API/Google Ads API have the same functionality as the Google Ads UI. However, the naming is a bit different from the backend services. If you are looking to pull the list of Conversion actions in the account, you may use the ConversionTrackerService.get() in AdWords API.

RE: Campaign IDs in Google Ads should be treated as 64-bit integers

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi, Thank you for reaching out. In the AdWords API and Google Ads API, Campaign IDs are 64-bit signed integers and are of type xsd:long in the AdWords API and INT64 in the Google Ads API. This is product level change. Please refer to the blog post for more information related to this change. Al

Setting Campaign Level Conversion Action

2019-08-07 Thread PPC Developer
Hi, I'd like to set a campaign's conversion action progrmattically via the API. Today, this is available in Search campaign settings page, the default is "use account level conversion action", see attached. I can manually select a specific conversion action if I click on the radio button "Ch

Re: The display_upload_ad field of ad is missing in Google Ads API

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hello, Could you please share one ad id for each of such Ads so that I can compare and see what differences they have. Also please share the code snippet or request log that is used to upload HTML5_UPLOAD_AD via API to investigate further. Regards, Sai Teja, Google Ads API Team ref:_00D1U1174p.

RE: Campaign IDs in Google Ads should be treated as 64-bit integers

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hello Everyone, I'll address all the questions in this thread in one go. The ID changes have already been rolling out as mentioned in our blog post: https://ads-developers.googleblog.com/2019/07/campaign-ids-and-budget-ids-as-64-bit.html This means that you should already be checking now if eve

RE: python api of google adwords(googleads) is giving "INVALID_CONVERSION_TYPE" when calling the OfflineConversionAdjustmentFeed operation

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hello, The INVALID_CONVERSION_TYPE error occurs when the conversion name mentioned in the request cannot be found in the account. To take a closer look could you please share the entire SOAP logs (request and response) without redacting any information? You could refer the README.md file to ena

fetching Conversion Actions list

2019-08-07 Thread michele
Hello, We're trying to fetch the list of Conversion Actions available within an account, but the ConversionTypeService that seems to be used by the AdWords interface doesn't seem to be available via the API, both the old and the new one. I found it mentioned here

Re: Negative conversions in CAMPAIGN_LOCATION_TARGET_REPORT?!

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Zweitze, That does sound like a pretty sound theory. Let me bounce it off a few people here. You're right. I don't think it's a quick fix, either. I'll discuss with people here to find out the next steps. You seem to be a lightning rod for obscure issues; I wish it was more simple. Thanks fo

Re: Google Ads API Bulk Mutates Response Order

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hello Dimitrii, Yes you are correct, the response will contain the resource names in the same order as the operations passed to the service. Though the operations will execute asynchronously. Please let me know if you have any further questions. Regards, Sai Teja, Google Ads API Team ref:_00D1U

RE: How to add a label on adgroup level?

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Gianmarco, You will be able to use the AdGroupLabelService to create the AdGroup labels for an ad group. The code sample to AddCampaignLabels should be helpful to build this logic. Code samples in other languages can be found here. Could you please give this a try and let us know if you enco

Can I change the bid for all keywords at once?

2019-08-07 Thread Mahir Sümer
Hi, Can I change the bid (at a certain rate for example 5%) for all keywords at once with AdWords API (v201809)? But not the ad group. All words from that ad group. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~

Can I change the bid for all keywords at once?

2019-08-07 Thread Mahir Sümer
Hi, Can I change the bid for all keywords at once with AdWords API (v201809)? But not the ad group. All words from that ad group. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2019-08-07 Thread Oksana Sulyma
Thanks Dannison! We see this error being temporary, any recommendations on delay and number of attempts for report creation? This would be the best way for us to change our code with the smallest impact. Thanks! Oksana On Wednesday, August 7, 2019 at 9:01:39 AM UTC+3, adsapiforumadvisor wrote: >

Re: Location extensions aren't working

2019-08-07 Thread FW API
Hi Ejay, Thanks for your response. It seems like it was a temporary bug on googles side, because now it works again. We'll keep an eye on it. Best regards, Anna -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=

Universal app campaign not working

2019-08-07 Thread Imran Khan
I'm trying to create a mobile app campaign via google adwords api , version 201809,I'm following this sample of code written in python. https://github.com/googleads/googleads-python-lib/blob/aa3b1b474b0f9789ca55ca46f4b2b57aeae38874/examples/adwords/v201809/advanced_operations/add_universal_app_c

Campaign IDs in Google Ads should be treated as 64-bit integers

2019-08-07 Thread am 23
Pls advise what is Campaign IDs in Google Ads should be treated as 64-bit integers? any effect on the campaign performance? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Campaign IDs in Google Ads should be treated as 64-bit integers

2019-08-07 Thread Dafna Zusman
Hi, When are you going to deploy this change? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "Ad

python api of google adwords(googleads) is giving "INVALID_CONVERSION_TYPE" when calling the OfflineConversionAdjustmentFeed operation

2019-08-07 Thread DAHMANE NOUREDDINE
I am using googleads API to perform the following operations: - (1) upload new conversions - (2) adjust uploaded conversions the first operation could be done successfuly. however the second opeartion which is the adjustment of the uploaded conversion is giving the error "INVALID_CONVERSION_TYP

Re: INVALID_FUNCTION_FOR_FEED_WITH_FIXED_SCHEMA error for matchingFunction of AdGroupFeed

2019-08-07 Thread Sabrina Fontanella
Hi, I exchanged some private messages about this problem in May and I was told that it was work in progress. Do you maybe have other news about it? Thank you in advance. Regards, Sabrina On Wednesday, May 8, 2019 at 11:07:11 PM UTC+2, Sabrina Fontanella wrote: > > Hi, > > We are running into

How to add a label on adgroup level?

2019-08-07 Thread Gianmarco Longhi
Hi all, Can somebody help me on how to add a label on adgroup level with the Google Ads api? I haven't found any sample code or documentation about it. Thanks for your help. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.co

Re: Performance Report for Display Ads

2019-08-07 Thread Reginald Chris Pasco
Noted with thanks. On Wed, Aug 7, 2019 at 4:12 AM Google Ads API Forum Advisor Prod < adsapiforumadvi...@gmail.com> wrote: > Hello Reginald, > > You can use the Campaign Performance Report > > by filteri

Re: customer_client view not working as expected

2019-08-07 Thread cv
Any update on this issue? On Thursday, 20 June 2019 17:12:09 UTC+5:30, adsapiforumadvisor wrote: > > Hello, > > The team is aware of the issue and is currently working on a solution. I > do not yet have an estimate time when it will be available, unfortunately. > > I will let you know if I learn

RE: Location extensions aren't working

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Anna, Thanks for posting your concern. To further investigate the issue, could you provide the complete SOAP request and response logs in creating the targeted location together with the customer ID? Please refer to the 'readme' section of the respective client library (refer to this link t

RE: Location extensions aren't working

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Anna, Thanks for posting your concern. To further investigate the issue, could you provide the complete SOAP request and response logs in creating the targeted location together with the customer ID? Please refer to the 'readme' section of the respective client library (refer to this link t

Re: Adwords api create UAC failed for some account

2019-08-07 Thread 'Rita Wang' via AdWords API and Google Ads API Forum
Hi Peter, Do you mean, if the client needs to create App Campaign with Ad group, they must use Google Ads API? But Google Ads API is still in beta version while Ad group has rolled out to client's account. It doesn't make sense to forcely roll out a feature that would make the API stop working. Wo

Re: Adwords api create UAC failed for some account

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Kim, Glad to you were already able to figure out the issue. Feel free to write back if any other issues arise when using the AdWords API. Hi Rita, Currently, App Campaigns are not yet fully supported in the AdWords API. What is currently supported are Universal App Campaigns as you may see

Re: Adwords api create UAC failed for some account

2019-08-07 Thread 'Rita Wang' via AdWords API and Google Ads API Forum
Hi Peter, I think my client met the same issue, and it should related to this update . What to make sure that after modified the code accordingly, Adwords API should support the operations of App campaigns wit

How to create and select all textassets?

2019-08-07 Thread Suresh Kumar Shenbagam
Hi, I am able to create ImageAsset using the sample code provided. But If I want to store some text data for future use, how can I create TextAsset with some text passed to ' assetText' field. And how can I retrieve the same field/value using the selector? I am using JAVA Adwords API. Suresh

RE: Adding an Audience list to a campaign using google ads python API

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Kareem, Thank you for reaching out. My apologies as we do not have an exact Python sample code on what you are looking for. However, you can refer to this sample code instead on positively targeting campaign criteria. You can just modify the code a little bit to cater the CriterionUserList.

Re: Adwords api create UAC failed for some account

2019-08-07 Thread Kim Hung
Thank you for you reply. Finally I figure out what's wrong. I didn't notice the info from https://ads-developers.googleblog.com/2019/06/upcoming-changes-to-app-campaigns.html . On Wednesday, August 7, 2019 at 1:22:02 PM UTC+8, adsapiforumadvisor wrote: > > Hi Kim, > > The "OperationAccessDenied

Re: RE: Marital Status, Education and Homeownership Status adwords API support

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Chaitanya, My apologies for not pointing out previously that marital status, Education and Home ownership Status are currently not supported as targeting in AdWords API. You may follow our blog for any upcoming features and updates. Regards, Hiroyuki Google Ads API Team ref:_00D1U1174p._5001

Re: Google Ads API Bulk Mutates Response Order

2019-08-07 Thread Dmitrii Stebliuk
Hello Sai Teja, Thank you for your response. Basically I create many "ads" with one mutate request. Let's say 1000 ads. Each ad has "h1, h2, h3, d1, d2" attributes. I get a response from Google Ads API as List[MutateAdGroupAdResult] where each item has only `resource_name` and it is the list of

Re: Marital Status, Education and Homeownership Status adwords API support

2019-08-07 Thread Chaitanya Kulkarni
Hi Team, Yes, I need to add demographics targeting to campaigns/ad groups. I checked the sample code. I could find API for Parent object to set the parental status. But I could not find similar API/object for marital status, Education and Homeownership Status. Please let me know if support for thes

RE: UI reports error for successfully uploaded CrmBasedUserList using APIv201509

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Jamie, Thanks for bumping this thread. Since this thread was from a while back, I would have to check with the rest of our team whether there had been any updates regarding the issue. Moving forward to yours, could you provide your the complete SOAP request and response logs that were gener

RE: Developer token approval issues

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Vinaykumar, Based on this limits guide, a Google Ads client account can have up to 5 MCCs managing them. You can first try and link your clients' Google Ads client accounts into your MCC and then retry your request to have an approved developer token. Let me know if this helps or if you enc

RE: Marital Status, Education and Homeownership Status adwords API support

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Chaitanya, Could you confirm what you are trying to achieve via AdWords API is adding demographics targeting to campaigns or ad groups? If yes, you may refer to this guide for the available list of demographics and the values in the Codes and Formats guide. To implement these demographics, y

Adding an Audience list to a campaign using google ads python API

2019-08-07 Thread Kareem Emad
I'm trying to attach an audience list - which I have already created on Google ads using the python api - to an existing campaign on the same Google ads account. I have both the ID of the campaign and the ID of the audience list, but I did not find any clear example in the documentation on ho

Developer token approval issues

2019-08-07 Thread Vinaykumar .S Karode
Hi my company does not run ads but I have clients that do run ads. I want to export ads performance data for my clients so I can build a business intelligence dashboard. My application was rejected again because of no spend history. But I just wanted to re-emphasise that my company is not runni

Re: UI reports error for successfully uploaded CrmBasedUserList using APIv201509

2019-08-07 Thread Jamie Barbosa
Wondering if this was ever fixed? Or what the underlying issue was? I'm experiencing the exact same problem right now and not quite sure how to move forward. On Wednesday, February 10, 2016 at 2:37:04 PM UTC-6, Hunter wrote: > > We successfully uploaded two CrmBasedUserLists through the API. How

Location extensions aren't working

2019-08-07 Thread FW API
Hi, we add location extensions to our google ads campaigns via api and until Tuesday it worked fine. Now we have a strange behaviour: Although we can connect MyBusiness with Google Ads, there are no elements in the feed. We don't get any error messages. Even more strange: We can't find the lo