Re: Internal server error in CampaignCriterionService

2014-06-20 Thread Ray Tsang (AdWords API Team)
Marc, Could I trouble you to send me the CID in private? Cheers, Ray On Friday, June 20, 2014 11:06:41 AM UTC-4, MarcF wrote: > > It seems that the problem is only for specific campaigns. > Only one campaign that we use for testing. > it does not matter > Thanks, > > Marc > > On Tuesday, June

Re: Error when trying to create Root Product Partition for shopping campaign

2014-06-20 Thread Ray Tsang (AdWords API Team)
Chuck, We have a related forum thread that had similar issues and examples. Also for your reference, we have a set of slides that you may find helpful as well. The pa

Re: No campaigns were found

2014-06-20 Thread Anash P. Oommen (AdWords API Team)
Hi Jai, api.adwords.clientCustomerId should contain the customer id of your test account (i.e. the account that has the dummy campaign). An MCC account cannot have campaigns, hence the error message that no campaigns were found. Cheers, Anash P. Oommen AdWords API Advisor. On Thursday, June 12

Re: Parameter reverting to default due to line length, despite being under character limit

2014-06-20 Thread Josh Radcliff (AdWords API Team)
Hi Ryan, Jason's earlier post summed up the issue quite well. The character length limit is a rough guideline, but there may be situations where the # of characters is within the limit, but due to the width of those characters we have to fall back to the default value. I'll update our Ad Parame

Re: How many API Calls am I making per day?

2014-06-20 Thread Anash P. Oommen (AdWords API Team)
Hi Krishna, Yes, you are correct, if you change the bids of 5 keywords, it will cost you 5 operations. However, if you apply for standard access , then you no longer need to worry about the number of operations limit per day. Cheers, An

Re: Is it possible to retrieve the IP of the person viewing the ad?

2014-06-20 Thread Anash P. Oommen (AdWords API Team)
Hi Geoff, No, this cannot be done. Cheers, Anash P. Oommen, AdWords Scripts Team. On Wednesday, June 18, 2014 12:04:48 PM UTC-4, Geoffrey Liu wrote: > > I want my script to retrieve the IP of the person viewing the ad so that I > can use it in my script. I'm using another API that has to abilit

Error when trying to create Root Product Partition for shopping campaign

2014-06-20 Thread Chuck Reeves
I am following the example PHP script for adding a group partition found here: https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201402/ShoppingCampaigns/AddProductPartitionTree.php The adGroup is created in AdWords and only contains the default Partition which is of

Re: Is it possible to retrieve the IP of the person viewing the ad?

2014-06-20 Thread rob
no On Wednesday, June 18, 2014 11:04:48 AM UTC-5, Geoffrey Liu wrote: > > I want my script to retrieve the IP of the person viewing the ad so that I > can use it in my script. I'm using another API that has to ability to > generate a response based on a given IP, but if I use my API's IP > auto

Re: Internal server error in CampaignCriterionService

2014-06-20 Thread MarcF
It seems that the problem is only for specific campaigns. Only one campaign that we use for testing. it does not matter Thanks, Marc On Tuesday, June 17, 2014 5:10:04 PM UTC+2, Andreas Weber wrote: > > Hi folks, > > while trying to fetch all campaign criteria for a certain campaign we've > enc

Re: Issues with adding production partition in shopping campaign with API

2014-06-20 Thread aroxotest18
Hi, Sorry , I gave you Campaign ID for "Dummy". *Please have a look at following Details:* Campaign ID : 187801933 Adgroup ID : 14887069333 Yes, As you explained , Everything is Clear. A / \ B C / \ D E i Created Product Partition usin

Re: Internal server error in CampaignCriterionService

2014-06-20 Thread MarcF
Hello, we encounter the same error, when trying to get details of the "LocationGroups" by passing the field "MatchingFunction" in the selector. https://adwords.google.com/api/adwords/cm/v201402";> https://adwords.google.com/api/adwords/cm/v201402";>** https://adwords.goo

Re: Parameter reverting to default due to line length, despite being under character limit

2014-06-20 Thread Ryan Gough
Oh I appreciate that there is not an "easy" solution, just wanted to clarify that what I had observed is correct. I could change our ads such that they only use 24 characters max in the headline, but that would then mean changing the copy of lots of ads that render quite happily with 25 charact

Re: why are my ads showing the default parameter

2014-06-20 Thread Michael Cloonan (AdWords API Team)
Hello Ryan, I apologize that I was not able to reply on our private thread. Delivery to your email address failed repeatedly. I am glad you determined the cause, and I hope we are able to get to the bottom of the issue on the new thread. Regards, Mike, AdWords API Team On Friday, June 20, 2014

Re: Adwords Criteria Report: Filter empty values.

2014-06-20 Thread Emiliano Busiello
Thanks for the alternative solution. On Friday, 20 June 2014 14:38:59 UTC+2, Danial Klimkin wrote: > > Hello Emiliano, > > > Indeed, "!= ''" does not work as expected, we'll check this behavior. > > In the meanwhile, you can achieve the same result for most cases with: > > SELECT Id, CampaignNam

Re: Adwords Criteria Report: Filter empty values.

2014-06-20 Thread Danial Klimkin
Hello Emiliano, Indeed, "!= ''" does not work as expected, we'll check this behavior. In the meanwhile, you can achieve the same result for most cases with: SELECT Id, CampaignName, AdGroupName, DestinationUrl FROM KEYWORDS_PERFORMANCE_REPORT WHERE DestinationUrl STARTS_WITH_IGNORE_CASE 'htt

Parameter reverting to default due to line length, despite being under character limit

2014-06-20 Thread Jason Stedman
If you think about it, Google really only has so many options here. They cannot provide limits like "each lime must render within 300px" but they have to provide some kind of limit. They also cannot allow lines to wrap because it would make the ad look unprofessional. I feel like the charac

Re: Updating ad params from xml

2014-06-20 Thread Danial Klimkin
Hello Marina, I don't see any active ad for the ad group in the request that has an ad param placeholder. What is the ad you expect the parameter to be shown in? -Danial, AdWords API Team. On Friday, June 20, 2014 4:17:27 PM UTC+4, Marina Rabovolick wrote: > > Hi Danial, > > Please find requ

Re: Irregularity in CRITERIA_PERFORMANCE_REPORT

2014-06-20 Thread Markus Zhang
Hello Danial, First of all, thank you for the fdast answer. One of the CIDs was 188-840-2396. the date range type was "CUSTOM_DATE" and the range was from "20140617" (Ymd) to "20140617" You can see the date range here from the report definition: ReportDefinition === dateRangeType = CUST

Adwords Criteria Report: Filter empty values.

2014-06-20 Thread Emiliano Busiello
I would like to query for a report avoiding rows with an empty field, for example right now I'm using this query: SELECT Id, CampaignName, AdGroupName, DestinationUrl FROM KEYWORDS_PERFORMANCE_REPORT DURING TODAY This gets me back all the rows, I would like to avoid rows with an empty Destina

Re: Updating ad params from xml

2014-06-20 Thread Marina Rabovolick
Hi Danial, Please find requested information attached. Четвер, 19 червня 2014 р. 13:12:27 UTC+3 користувач Danial Klimkin написав: > > Hello Marina, > > > Could you please send us full request XML and server response for > AdParamService call? Please make sure to remove sensitive values such as

Re: Accessing adwords api from a server c#.net

2014-06-20 Thread Danial Klimkin
Hello, You should be able to use the same "Application" mode. Service accounts are for Google App domains only. Please let us know more details on what is the issue in the server environment, what error are you getting etc. -Danial, AdWords API Team. On Friday, June 20, 2014 3:39:56 PM UTC

Re: get_name error on OfflineConversionFeed (Perl)

2014-06-20 Thread Danial Klimkin
Closing as duplicate of: https://groups.google.com/d/msg/adwords-api/HmrV-R1eCD4/eUVe_S7ePEYJ On Friday, June 20, 2014 2:05:53 PM UTC+4, d...@adservice.com wrote: > > Hello > > When im trying to use the UploadConversion API to upload offline > conversions I get the following error, when the

Re: Irregularity in CRITERIA_PERFORMANCE_REPORT

2014-06-20 Thread Danial Klimkin
Hello Markus, Could you please let us know the target account CID, date range for the report and exact report definition? What are the numbers your application calculated and what was the one in totals line? -Danial, AdWords API Team. On Friday, June 20, 2014 1:53:38 PM UTC+4, Markus Zhan

Accessing adwords api from a server c#.net

2014-06-20 Thread nuwan . gebalanage
Hi, I have a program that needs to access the Adwords api that has to be set up in a server as an exe. This exe is then accessed via an SSIS package passing parameters. It was fine when I was using the v201309 api. With the sunset on 21st July I'm trying to upgrade it to v201402 which does not

Re: Campaign Stats

2014-06-20 Thread Danial Klimkin
Hello, Stats are only available in reporting by design. There is no way to retrieve them from the management services. -Danial, AdWords API Team. On Friday, June 20, 2014 11:43:08 AM UTC+4, thanasis parras wrote: > > Hello, > > I started using the adwrods api and I just noticed that the api

Re: RE: Can not generate AdGroup Performance Report

2014-06-20 Thread Danial Klimkin
Hello Balakrishnan, Please see the error you are receiving back (it's in the report you've attached). You are requesting an incompatible combination of the fields, you need to exclude some to obtain Device column. I am closing this thread as it is 3 years old and on a different issue. -Dania

Re: set a mobile bid adjustment using the API

2014-06-20 Thread Danial Klimkin
Hello Santosh, Please start a new thread with your question as this is a separate issue. We don't want to spam people on this thread with irrelevant details. -Danial, AdWords API Team. On Friday, June 20, 2014 9:51:20 AM UTC+4, san...@a-insight.com wrote: > > > hey danial, > > >

Re: Service account - different errors

2014-06-20 Thread Danial Klimkin
Hello Justin, Please send me exact XML request and server response for both of these errors. Also, check that the account you specify in "prn" has access to the account you specify in "clientCustomerId", it is not the case now. -Danial, AdWords API Team. On Thursday, June 19, 2014 9:35:25 P

Re: Shopping Campaign API support

2014-06-20 Thread Payal Pahalajani
Hi Takeshi, I'm from the LCS team and I have a client who needs to migrate all his existing PLA campaigns to Shopping campaigns. This is a migration that is happening across all advertisers and is due by end of August. Is there any code I can run on the API to bulk migrate these campaigns to Sh

Irregularity in CRITERIA_PERFORMANCE_REPORT

2014-06-20 Thread Markus Zhang
Hi! We implemented an internal tool for our company that shows some stats like how many orders we had with our online shops on what days, etc. A few days ago we added the adwords costs to it. We used the adwords API with the official PHP library (https://github.com/googleads/googleads-php-lib/)

Re: How to get clicks impressions in CampaignService

2014-06-20 Thread thanasis parras
Can someone explain to me why this change occured and now the only option is to get a huge string through the reporting service instead of getting the objects and do with them whatever you want!? How are we supposed to save the data locally in a local database and not making unessecery calls to

Campaign Stats

2014-06-20 Thread thanasis parras
Hello, I started using the adwrods api and I just noticed that the api doesn't let you get the campaign stats (meaning the clicks,impressions,costs per campaign and so on) as objects, but instead it just returns a huge string through the reporting service. Is there a specific reason about tis

get_name error on OfflineConversionFeed (Perl)

2014-06-20 Thread do
Hello When im trying to use the UploadConversion API to upload offline conversions I get the following error, when the result is supposed to be displayed: Can't locate object method "get_value" via package "Google::Ads::AdWords::v201402::OfflineConversionFeed". Valid methods are: at /usr/local

get_name error on OfflineConversionFeed (Perl)

2014-06-20 Thread do
I am trying to use the UploadConversion API and it seems to be working, some of the conversions are getting imported, but when my script should display the results i get the following error: Can't locate object method "get_value" via package "Google::Ads::AdWords::v201402::OfflineConversionFeed"

Re: set a mobile bid adjustment using the API

2014-06-20 Thread santosh
hey danial, I wanted to update bid(max cpc) on keywords level(criterian) using below code but I am getting trouble that where to set my keywords id so that I could update that cpc. AdGroupServiceInterface adGroupService = adWordsServices.get(session, AdGroup

Re: why are my ads showing the default parameter

2014-06-20 Thread Ryan Gough
I determined that it was related to the "real" or "display" width of the headline, and have posted a new question with this information in mind. Thanks, Ryan On Wednesday, June 11, 2014 2:33:44 PM UTC+1, Michael Cloonan (AdWords API Team) wrote: > > Hi Ryan, > > If you want me to take a closer

Parameter reverting to default due to line length, despite being under character limit

2014-06-20 Thread Ryan Gough
Hi, I've noticed that in some situations, the default value of my parameter is showing even when a value has been supplied and no line character limits are being broken. After some experimentation, I've seen that it relates to the actual width of the headline, rather than the number of charact

Re: RE: Can not generate AdGroup Performance Report

2014-06-20 Thread usaweb81
Hi, I am trying to get Adgroup performance report.I have used Device column on selection list as per "https://developers.google.com/adwords/api/docs/requirements"; requirements document. But I can't get result when I add "Device" Column in the selection list. If I exclude "Device" column it