Obtaining Change History of Bid changes, Placements and Keyword

2014-09-23 Thread Vandita Chhabaria
Hello, My tool is just a -Reporting only Adwords API Client. Basically the App downloads a Keyword or Placement report for a particular Date range, fetches data from our local database and computes ROI. But there is a requirement that, App should be able to display a graph showing Impact of:

Re: Issue with uploading large amounts of data using MutateJobService

2014-09-23 Thread Alan Coleman
Hi Anash, Is there any update on this fix? Or a timescale in place? We'd really like to be able to make use of this aspect of the API. Many thanks. On Thursday, September 4, 2014 8:00:59 PM UTC+1, Anash P. Oommen (AdWords API Team) wrote: Hi Brian, A fix is being worked upon, it should

Remove All AdGroups in a Campaign

2014-09-23 Thread testadwords
Hi All, I want to remove all AdGroups within a campaign. Can this be done without having access to the specific AdGroup Ids first. Is this possible? Thanks, Conor -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

AdGroupId Ebing set to Zero

2014-09-23 Thread testadwords
Hi All, When creating an AdGroup using the AdWords API, it appears that the id field of the group is set to 0. This happened for fifty-three ad groups in a row. Is this correct behaviour? Are the groups only assigned a 'proper' id after they are created using the mutate method? How do I access

Re: Deleted AdGroups Still Present (Sort Of...)

2014-09-23 Thread mcc
Most objects within adwords aren't actually deleted, they are simply marked as such (if you choose all groups from the drop down you will see them). They don't get deleted so that you can retrieve the stats for them at a later date. Unfortunately the new version of the api doesn't allow you to

Re: ad group mobile bid modifiers in shopping campaigns not working

2014-09-23 Thread GregT
Hi again, Anash. It's been another week (so, two weeks after you said to let you know if the issue still happens after a few days), and nothing appears to have changed -- we are still getting the same error as originally. Any update on this? Thanks, Greg On Monday, September 15, 2014

Error: Invalid_client No Application Name while running GetRefreshToken.php

2014-09-23 Thread Kiran Kumar
Hi, I have entered all the credentials in auth.ini file except refresh token.When I run GetRefreshToken.php it gave an url in the command prompt, on running the url in browser it shows the following error. Invalid_client No Application Name My developers token is not yet approved. Is it

Re: INCOMPLETE_SIGNUP error returned by Adwords API

2014-09-23 Thread Steve Renaker
Hi Josh -- I hope you don't mind if I jump into this thread, since I'm having a similar issue which I hope you can help with. I've followed the instructions to set up an AdWords API test account, with the Python client. I'm trying to send requests to the production MCC account, but I can't get

How can I get campaign spend data from the AdWords API?

2014-09-23 Thread J
I'm using the Java AdWords API and trying to get the daily or monthly spend data by campaign. I couldn't find where to do this in the documentation. Can somebody point me to the right docs? Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Re: Video Ads - How to pull metrics from Adwords API.

2014-09-23 Thread byron elton
https://lh4.googleusercontent.com/-jBX4WiG0TA4/VCBmC9YQjII/GIE/oQ2JnxbhFrA/s1600/bbmac_3_month_pdf.png This is super frustrating not being able to automate this process. We went ahead and developed an excel program that one can upload a monthly report of statistics for individual

Conversion Time issue for uploading offline conv

2014-09-23 Thread analytics
Hi, I am using Adwords API for uploading offline conversions using C#. I understand that the conversion time has to be in this format: 20140216 101010 Asia/Tokyo. When sending an offline conversion our server would convert the current time in the required timezone and add that timezone to the

Re: Obtaining Change History of Bid changes, Placements and Keyword

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Vandita, The only change history-related feature of the API is CustomerSyncService. The idea behind CustomerSyncService is that you would keep a local copy of your account's state (e.g., in a database). You would then use CustomerSyncService to determine which objects (campaigns, ad groups,

Re: Remove All AdGroups in a Campaign

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Conor, You will need the IDs of the AdGroups, but if you only know the names you could do the following: 1. Issue an AdGroupService.get https://developers.google.com/adwords/api/docs/reference/v201406/AdGroupService#get where your *Predicate* filters on CampaignId

Re: AdGroupId Ebing set to Zero

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Conor, You'll have to create the AdGroups first via AdGroupService.mutate https://developers.google.com/adwords/api/docs/reference/v201406/AdGroupService#mutate, and then use the IDs returned from that for subsequent calls against other services. The client libraries do not assign IDs

Re: DeletedCriteria / RemovedCriteria - not containing deleted keywords

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Giles, How long after deleting the keywords did you run the sync service, and are you sure that the date/time range in your selector covers the removal time? Also, when you issue a CustomerSyncService.get for the campaign of those keywords' ad groups, what do you get back? If you'd like to

Re: Error: Invalid_client No Application Name while running GetRefreshToken.php

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi, It sounds like you may not have put the proper value in the *client_id* or *client_secret* entries in your auth.ini file. Please take a look at the PHP library's OAuth 2.0 guide https://github.com/googleads/googleads-php-lib/wiki/Using-OAuth-2.0 and let me know if that doesn't resolve the

Re: How can I get campaign spend data from the AdWords API?

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi, I think I may have responded to you yesterday via a separate thread, but if not, here's my response to a similar question. All performance statistics (including campaign spend) are accessible via API reports. The Reporting Basics

Re: INCOMPLETE_SIGNUP error returned by Adwords API

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Steve, I confirmed that your prod MCC does not show Terms Conditions as accepted. Please go through the steps outlined in the Common Errors Guide https://developers.google.com/adwords/api/docs/common-errors#QuotaCheckError for trying to accept Terms Conditions and if you still get that

Re: Conversion Time issue for uploading offline conv

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Sofia, Unfortunately, I'm not aware of a mapping from the .NET time zones to the API time zones https://developers.google.com/adwords/api/docs/appendix/timezones. However, you can download the API time zones as a CSV and use that to create a mapping for the time zones you'll need. I

Re: Conversion Time issue for uploading offline conv

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Also, I just ran across the following stackoverflow post: http://stackoverflow.com/questions/14995070/convert-city-based-time-zone-in-net It contains some tips on translating time zones from the format used by the API into .NET time zones. Cheers, Josh, AdWords API Team On Tuesday, September

Re: INCOMPLETE_SIGNUP error returned by Adwords API

2014-09-23 Thread Steve Renaker
OK, thanks, will do. On Tuesday, September 23, 2014 12:06:23 PM UTC-7, Josh Radcliff (AdWords API Team) wrote: Hi Steve, I confirmed that your prod MCC does not show Terms Conditions as accepted. Please go through the steps outlined in the Common Errors Guide

Re: Is it possible to use multiple LocationExtensionOperand to set different radii on different GeoTargetOperands?

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi, To achieve the type of targeting you described, you'd want to create a *CampaignCriterion* for each location where each CampaignCriterion.criterion https://developers.google.com/adwords/api/docs/reference/v201406/CampaignCriterionService.CampaignCriterion#criterion is set to a Proximity

Re: Can't set multiple radii using LocationExtensionOperand in v201406

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi, This looks like it's a duplicate of your other post https://groups.google.com/d/msg/adwords-api/tPSvMjZeIl4/5kds6PqhFckJ, where I just replied to a similar question. If you still have questions about radius targeting after reading that reply, let's continue the discussion there. Thanks,

Re: Adding new feed item to existing campaigns from feed

2014-09-23 Thread Josh Radcliff (AdWords API Team)
Hi Anil, No, they will not be assigned to existing campaigns automatically. You'll have to update your *CampaignFeed*'s matchingFunction https://developers.google.com/adwords/api/docs/reference/v201406/CampaignFeedService.CampaignFeed#matchingFunction to include the new feed item IDs.

Re: Is it possible to use multiple LocationExtensionOperand to set different radii on different GeoTargetOperands?

2014-09-23 Thread dkriekenbeek
Thanks Josh, The context of my question was to fulfill C.21 of the Required Minimum Functionality (Set distance targeting), per https://developers.google.com/adwords/api/docs/requirements ... It is clear to me now that I misunderstood what distance targeting implied/ and what was possible with

How to run auction insights reports using AdWords Script

2014-09-23 Thread Luis M . CastaƱeda
I am using the AdWords Scripts to run my reports. I want to know how to generate an auction insights reports. Is it possible? Thanks, Luis -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/

How to run search terms report on selected keywords using AdWords Script

2014-09-23 Thread Luis M . CastaƱeda
I am using the AdWords Scripts to run my reports. I want to know how to generate a search terms report on selected keywords. Is it possible? Thanks, Luis -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: