How to get placement list via AWQL for mobile campaign

2014-08-27 Thread Berry Tsakala
i want to get a list of placement URLs per *mobile* campaign, using AWQL. 1. For an "exclude" mobile campaign, i want to get the list of *excluded* placements, 2. and for an "include" mobile campaign, i want to get the list of *included* placements, 3. F

Set refreshtoken in PHP

2014-08-27 Thread Mike Young
I have saved the refresh tokens for clients in a database, and when needed want to use that refresh token to call API. How do I set that refresh token dynamically and not set in stone as the auth.ini file does? Using PHP v201402 -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also

Re: Unable to delete excluded partition

2014-08-27 Thread Shopping API Team
Hi Eric, I suspect that the issue is you can't change the CaseValue for a node, since that's part of the identity of the object and would essentially mean changing its ID (and by extension, the IDs of the nodes below it). You'll likely have to remove that node (thus deleting the entire subtree

Re: Trying to get information from gclid

2014-08-27 Thread Florian Lherbette
Hi Oscar, Click performance reports can only be run for single days, not longer date ranges, as stated in the documentation : https://developers.google.com/adwords/api/docs/appendix/reports#click Here you are requesting a report on "last month" which won't work. Also, you should read the body

Issue with uploading large amounts of data using MutateJobService

2014-08-27 Thread Alan Coleman
Hello everyone, I'm creating some functionality in our app to build a fresh copy of a campaign based on a current campaign's ALL_TIME sqpr report. The report has the potential to produces tens of thousands of search terms - Which will in turn be created into AdGroups, TextAds, Keywords and Neg

Re: Is there a way to resubmit a campaign for approval?

2014-08-27 Thread Mike Harkins
Thanks for the clear and concise answer, as well as the workaround. On Tuesday, August 26, 2014 1:28:53 PM UTC-7, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > There's no way to do that through the API. You would have to remove the > ads and re-add them via AdGroupAdOperation >

Keyword Detail Report

2014-08-27 Thread Hendrik
Hi, On the user interface you find under keywords -> details -> search (I'm not sure if that are the exact terms on the english interface) the terms which usershave entered to trigger a keyword. Is it possible to retrieve that data for a given campaign via the API-Report Service? -- -- =~=

Re: MutateJob status never complete

2014-08-27 Thread Anash P. Oommen (AdWords API Team)
Hi Nicolas, Could you share the bulk mutate job id with me? I could investigate this further. Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, August 26, 2014 2:46:48 PM UTC-4, Nicolás Gelpi wrote: > > Hi All, I'm currently working with the MutateJobService, and it was > working fine

Re: Issue with uploading large amounts of data using MutateJobService

2014-08-27 Thread Anash P. Oommen (AdWords API Team)
Hi Alan, InternalApiError.UNEXPECTED_INTERNAL_API_ERROR means that something unexpected happened at our end. MutateJobService should be able to process the kind of batch size you provide without any issues. Can you please provide the SOAP request id (or the sanitized SOAP logs)? You can turn o

Re: Age Range sample data

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi Justin, Do you mean will the report always break out the results by ad group? If so, then from my tests it would appear that the answer is yes. If I missed your point, though, let me know. Also, you may find the following lists helpful: - Age Ranges

Re: Adwords v201402 Api Automatic Bidding Scheme Issue

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, If you simply want to assign a new budget to an existing campaign, you can issue a CampaignService.mutate request with a CampaignOperation

Re: No Campaigns being returned by API

2014-08-27 Thread Stacie Waleyko
Maybe the OAuth credentials are incorrect? Did you remember to update them when you started using the test account? On Tuesday, August 26, 2014 9:43:58 AM UTC-7, ma...@clickedon.it wrote: > > I am having some issues with no campaigns coming back. > I am requesting from my sandbox account. Howeve

Re: Results from TrafficEstimatorService are different from Keyword Planner Tool

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, The TrafficEstimatorService should return values in the account's currency. I'd recommend reading through our Estimating Traffic Guide -- as noted there, one key thing people often forget is to set *all* of t

Re: Keyword Detail Report

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, Yes, you can get that data from the SEARCH_QUERY_PERFORMANCE_REPORT . You may also find the Mapping Reports to the UI guide helpful. Cheers, Josh,

Get clientCustomerIds after Oauth permission granted

2014-08-27 Thread Mike Young
I have just asked permission to use the clients adwords data and they have accepted. (they can revoke if they want to.) I now need to make an API call to get user data. I need to know the clientCustomerId to make a call via API. I have ran GetAccountHierachy.php (using different refresh token)

Re: No Campaigns being returned by API

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, Also, is the *clientCustomerId* in your header the customer ID of your test *MCC* or your test *AdWords account* (child of your test MCC)? If it's set to your MCC, please change it to your AdWords account -- an MCC doesn't have any campaigns, so an empty response is expected if that's the

Re: how to decrease the response time to creation of campaign and adgroups

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi Krish, You can definitely submit concurrent requests to the API, although you'll want to watch out for a few things. 1. You may start encountering rate limits. Please see the Rate Limits guide for tips on handling

Re: how to decrease the response time to creation of campaign and adgroups

2014-08-27 Thread Jai pur
Thank You so Much josh On Wed, Aug 27, 2014 at 7:50 PM, Josh Radcliff (AdWords API Team) < adwordsapiadvisor+j...@google.com> wrote: > Hi Krish, > > You can definitely submit concurrent requests to the API, although you'll > want to watch out for a few things. > >1. You may start encounterin

Re: Trying to get information from gclid

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, To follow up on Florian's response, I just realized that the .NET exception isn't including the *trigger* field in its *toString* when this happens. I filed github issue #22 to have us fix that. Cheers, Josh, AdWords API Team

Re: How to get placement list via AWQL for mobile campaign

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, You should be able to use the Placement Performance Report and differentiate between included/excluded placements via the *IsNegative* field. Regarding the empty results, could you try adding at least one statistic

Re: Set refreshtoken in PHP

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, Please see the CreateAdWordsUserWithoutIniFile.php example on github, which shows how to configure your AdWordsUser programmatically. Cheers, Josh, AdWords API Team On We

Re: Google Adwords Conversions übertragen in Google Analytics Konto

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, This forum is for questions related to the AdWords API. If you have questions about AdWords in general please check out the AdWords Help Center and the AdWords Community . Cheers, Josh, AdWords API T

Re: Get clientCustomerIds after Oauth permission granted

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, Regarding linking them to your MCC, you can actually send (and event accept) the invitation to link accounts via the API -- see our Managing Accounts guide for details. If you are not linking the client's account to

Re: {target} value track

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi Perrine, This forum covers API-specific questions. For general AdWords questions, please check out the AdWords Community or use the *Contact Us* link in the AdWords Help Center . Cheers, Josh,

Re: Trying to get information from gclid

2014-08-27 Thread Oscar Martinez
Hi, Following the responses, yes, we began to debug and we realized about that problem and yes, the exception message wasn't clear. One more thing, if we have the request only for an specific date we could have a problem. Let me explain it. 1. We capture the gclid. 2. We save the gclid on dat

Re: MutateJob status never complete

2014-08-27 Thread Nicolás Gelpi
I sent you this by private message. I did some more test, some times works, some times not. How it handles the pending jobs id's internally? If I make a new job request, with the same data to update, it will override the previous one, or will execute both jobs? On Wednesday, August 27, 2014 10:

Re: Product Partition Tree Structure

2014-08-27 Thread mm
The value is on the subclasses, so you have to determine the type and cast to that class in order to get the value, something like this: if (part.getCaseValue() instanceof ProductBrand) { ProductBrand pb = (ProductBrand) part.getCaseValue(); String value = pb.getValue(); } else if (part.

Re: Trying to get information from gclid

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, The GclId will be recorded in AdWords on the date that the click occurred. Are you concerned that the date that you record for the click may differ from the date that AdWords records? Note that although the Click Performance Report can only be run for a single day, you can still run it for

Re: Google Product Taxonomy vs Product Bidding Category

2014-08-27 Thread Josh Radcliff (AdWords API Team)
Hi, We've investigated this thoroughly on our side and realize that the inconsistencies make GPC-based bidding very difficult. We are looking into possible work-arounds -- I'll post back soon with our progress. Thanks, Josh, AdWords API Team On Monday, August 25, 2014 3:24:47 PM UTC-4, HK wrot

Re: Trying to get information from gclid

2014-08-27 Thread Oscar Martinez
Hi Josh, Yes, I hope that today gclids will be queried today to API, but it's a good idea to have a plan B asking for Yesterday. This what I needed to know, basically what date is recorded for every glicd. Thank you for your help. Kind regards, On Tuesday, August 26, 2014 2:45:10 PM UTC-6,

Re: problem with big product partitions removal

2014-08-27 Thread 'Eshaan Jayalath' via AdWords API Forum
Hi Anash, I am receiving the same error REQUEST_SIZE_LIMIT_EXCEEDED when creating a Partition, do we have 5000 limit on Partition node as well? Regards Eshaan On Tuesday, July 15, 2014 3:26:24 PM UTC-4, Anash P. Oommen (AdWords API Team) wrote: > Hi Radoslaw, > > I believe you shouldn't be

Re: Product Partition Tree Structure

2014-08-27 Thread Ads Developer
Thanks that answered my question On Thursday, August 28, 2014 1:57:29 AM UTC+5:30, mm wrote: > > The value is on the subclasses, so you have to determine the type and cast > to that class in order to get the value, something like this: > > if (part.getCaseValue() instanceof ProductBrand) { >