Re: Getting "cannot find class ManualCPCAdGroupCriterionBids" when trying to set maxCPC of keywords that are being added to an adgroup

2014-03-12 Thread jaison . directi
Thanks Josh, The snippet worked. On Wednesday, March 12, 2014 6:41:05 AM UTC-7, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > It looks like you simply want to set a CPC bid on your ad group criteria. > If that's the case, then I'd recommend taking a look at the latest > AddKeywords.php<

Re: Phone call tracking through adwords API

2014-03-12 Thread Michael Y.
I dont know if this helps but what I am looking to retrieve is information in the actual phone calls column. It is in the adwords UI under columns (phone Calls). I didnt see that in your link below but to summarize im trying to get the number of actual phone calls being made. Thank You, Mike

Re: Phone call tracking through adwords API

2014-03-12 Thread Michael Y.
I dont know if this helps but what I am looking to retrieve is information in the actual phone calls column. It is in the adwords UI under columns (phone Calls). I didnt see that in your link below but to summarize im trying to get the number of actual phone calls being made. Thank You, Mike

Re: Is there a way to use a production account data while developemen (python client library)

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, Running reports is a read-only action, so you can do this against your production account without worrying about modifying data. To be extra safe you could use an OAuth2 refresh token created while logged in as a user with read-only access to your AdWords account. One caveat here is that

Re: Ads API - policy violation and exemption requests

2014-03-12 Thread Vlad Zloteanu
Anash, Thank you for your help. Looking through code examples, I think I have misunderstood the error handling workflow. I need my system to be always informed of the changes in the approval status of my keywords/ads, and I want to send an exemption request each time it is possible (we never p

Is there a way to use a production account data while developemen (python client library)

2014-03-12 Thread Amr Abdel-wahab
I would love to use some production account data because I need to do some reporting tasks and I need to make sure it's correct and this can't be done with a test account so if there is a way to do so I will be grateful. and also I will be thankful if you try to show me so using python code beca

Re: How to verify the client customer id is valid and billing has been setup!

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, For item #1, using OAuth credentials that have permissions to access the AdWords account you should be able to set the invitation to ACTIVE as described here, the same as you did for test accounts. Is

Re: API v201309 CampaignCriterionService mutate set AdSchedule

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, As it turns out, the various time and date fields of AdSchedule are immutable by design. To clarify this, we've updated our documentation and WSDLs to reflect that these values will be ignored on SET or REMOVE operations. https://developers.google.com/adwords/api/docs/reference/v201402/Ca

Re: API v201309 CampaignService selector fields SelectorError.INVALID_FIELD_NAME

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, The selector pagehas been updated to accurately reflect which fields are valid *Selector* fields on a per-service basis. Thanks again for bringing this to our attention! Best regards, Josh, AdWords API Team On Tuesd

Re: Getting "cannot find class ManualCPCAdGroupCriterionBids" when trying to set maxCPC of keywords that are being added to an adgroup

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, It looks like you simply want to set a CPC bid on your ad group criteria. If that's the case, then I'd recommend taking a look at the latest AddKeywords.php example. T

Re: no data to produce report for testing account

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, A test account is just like a production account except it will not serve ads. This means you can create campaigns, ad groups, ads, etc., but you won't get back any data from reports unless you run a structure report

Re: Zero clicks with non-zero conversions

2014-03-12 Thread Josh Radcliff (AdWords API Team)
Hi, I think what happened here is that the conversion was reported before the click was determined to be spam. Cheers, Josh, AdWords API Team On Tuesday, March 11, 2014 9:29:46 PM UTC-4, Devesh Parekh wrote: > > Thanks for investigating. It's odd that a click that converts can be spam, > but I

Re: How to verify the client customer id is valid and billing has been setup!

2014-03-12 Thread brstdev9
hello Josh Radcliff, let me explain everything in detail. The application which i am developing requires to link existing adwords account under my MCC account and also create new accounts under my MCC account. now lets discuss about 1) adding existing adwords account under my MCC account. Here

Re: Duplicate Campaign Names Suddenly Allowed

2014-03-12 Thread susan
Hello Josh Surely any change in the advertised behaviour of the API should be at least announced and at best included in a new release. Thanks Susan On Tuesday, March 11, 2014 9:29:01 PM UTC, Josh Radcliff (AdWords API Team) wrote: > > Hi Dorian, > > The behavior was changed in recent weeks

Re: Duplicate Campaign Names Suddenly Allowed

2014-03-12 Thread Dorian Kind
Hi Josh, thanks for your quick reply. We have a lot of code (Adwords API, but also Adwords Scripts) that is based on the assumption that campaign names are unique within an account. Most of the time, this manifests itself in cases where we parse an adhoc report that was requested with a pred

Re: Report encoding issues

2014-03-12 Thread assaf
Ok , Issue solved -State the encoding in the BufferReader. ReportDownloadResponse response = new ReportDownloader(session).downloadReport(reportDefinition); InputStream in = response.getInputStream(); BufferedReader reader = new BufferedReader(new InputStreamReader(in, "UTF-8")); Tha