Re: (API) Does audience have destination URL?

2011-12-12 Thread Dr.g.
Somebody? Anybody? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed

Re: CreateAccountService InternalApiError

2011-12-12 Thread Alexander Yeliokoums
The problem is still reproduced. Please, help me. Is it my mistake? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You

api for getting info using gclid

2011-12-12 Thread Vijayraj Chauhan
Hi, I gone through many documents and forums but was unable to find any api which can give me the information like adwords Id, campaign Id and keyword using the given *gclid. *Is there any such api?? * * TIA, Vijayraj -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our

Re: [JAVA] GetAllCampaignTargets not returning any targets (Sandbox V201109)

2011-12-12 Thread Kevin Winter
Hi Balaji. The Sandbox Account Viewer is using v201101, where the campaign targets are still available via the CampaignTargetService. In v201109 most (except for the AdScheduleTarget) of them were changed to CampaignCriterion and are available via the CampaignCriterionService. Here's an

Re: Getting targeted Languages and Locations (migrating from v201101 to v201109)

2011-12-12 Thread Kevin Winter
Hi, In v201109 these Targets have been changed to CampaignCriteria and are available via the CampaignCriterionService: http://code.google.com/apis/adwords/docs/reference/latest/CampaignCriterionService.html - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: CRITERIA_PERFORMANCE_REPORT get real name of Remarketing (Audience \ User lists \ Interest list)

2011-12-12 Thread Kevin Winter
Hi, The name is provided as a convenience via the API call. The reports return the system internal numbers (which can actually be more useful, since the text value the number represents can change). We've published these values in our documentation. Here are the verticals, for example:

Re: Declined Api Token During the Development Stage

2011-12-12 Thread Kevin Winter
Hi, You can contact the AdWords API Token Review team at the following alias: adwordsapi-tokens @ google.com. - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com

Keyword Details in Ad Perfomance Report in v201109

2011-12-12 Thread Amit Vimal
Hi Team, Is it possible to get keyword details with Ad Performance report in v201109 in a single call to the API. Any sample code would really be helpful. Regards, Amit A Vimal -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group:

Long wait for API token approval

2011-12-12 Thread plexop
Hello, We posted a request for the api token few weeks ago with no response. The request form is very limited so we couldn’t add screen shots or detailed docs about our system. Why is it taking so long? How we can submit the data to support our request? Thanks, Tal --

Keyword Details in Ad Perfomance Report in v201109

2011-12-12 Thread Amit Vimal
Hi Team, Is it possible to get the keyword details with the Ad Perfomance report v201109 by making a single call to the API. Any sample code would really be helpful. Thanks Regards, Amit -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group:

Re: problems upgrading from v201101 to v201109

2011-12-12 Thread Kevin Winter
Hi, Unfortunately, there's an outstanding feature request that is masking this issue. The clientEmail header is not valid in v201109, you must use the clientCustomerId instead. Currently, the API does not validate the SOAP headers, it instead silently ignores them, causing the issue you are

Re: sandbox: getting ADD_OPERATION_NOT_PERMITTED with both/either clientEmail and clientId

2011-12-12 Thread Kevin Winter
Hi Vijayraj, You can use the GetClientCustomerId java example to translate from the clientEmails that you have to the clientCustomerId you need: http://code.google.com/p/google-api-adwords-java/source/browse/trunk/examples/v201109/GetClientCustomerId.java - Kevin Winter AdWords API Team On

Re: Iterating over TargetList / Getting more information about target in v201109

2011-12-12 Thread Kevin Winter
Hi, In v201109, most of the campaign targets were migrated to CampaignCriteria, available via the CampaignCriterionService: http://adwordsapi.blogspot.com/2011/11/discovering-v201109-how-to-target.html - Kevin Winter AdWords API Team On Thursday, December 8, 2011 5:07:05 AM UTC-5, K D wrote:

Conversion location in API ?

2011-12-12 Thread David Cochard
Hello, I just saw that there is now the possibility to choose a conversion location (webpage/call) when creating a new conversion tracker. As far as I see in the documentation, this information is not available through the API, so that when you retrieve the list of conversion trackers for a given

Re: using the new oAuth with SOAP requests in C# ?

2011-12-12 Thread Kevin Winter
Hi, You will need to obtain the oauth_token and oauth_token_secret for the scope of the AdWords API. The maintainer of the C# client library wrote a wiki page discussing OAuth in that library: http://code.google.com/p/google-api-adwords-dotnet/wiki/UsingOAuth - Kevin Winter AdWords API Team

Re: ADD_OPERATION_NOT_PERMITTED when using sample code v201109

2011-12-12 Thread Kevin Winter
Hi Ovid, Please run this perl example with no clientEmail or clientCustomerId (clientId) specified: http://code.google.com/p/google-api-adwords-perl/source/browse/tags/current/examples/v201109/get_all_campaigns.pl After that, either run the account hierarchy example (

Re: example with TargetingIdeaSelector

2011-12-12 Thread Kevin Winter
Hi, The GetRelatedKeywords code example, which has been published with all the client libraries, should demonstrate how to accomplish this. Here's a link to the Java example: http://code.google.com/p/google-api-adwords-java/source/browse/trunk/examples/v201109/GetRelatedKeywords.java -

Re: How to create sandbox account using Java Client

2011-12-12 Thread Kevin Winter
Hi, There's a known issue in that the Sandbox returns 0 as the ManagerId for all links obtained via the ServicedAccountService. This causes issues when writing out code examples to interpret the response (although they work as expected against production). I just tested the java library in

Re: Confused with API stuff.

2011-12-12 Thread Kevin Winter
Hi, Third party software providers are not supposed to request API information from AdWords customers - they should have applied for their own API access. Regarding the budget, I recommend contacting the third party for more details. - Kevin Winter AdWords API Team --

Re: updating from Cross Client Report Download (ReportUtils::RunAsyncReport) to ReportUtils::DownloadReport

2011-12-12 Thread iateadonut
My client has more than 300 sub-accounts that his company manages. Sometimes, the sub=account may have no data returned when generating a report. I should just fetch each report anyway? 10 at a time and fetch 300 reports? (Just making sure.) Thanks. On Dec 1, 2:03 pm, Eric Koleda

Re: Question About v201109 Campaign Targeting

2011-12-12 Thread Kevin Winter
Hi Pete, Due to the change in how these are now represented as Criteria, you will need to use a REMOVE operator to remove a Campaign Criteria (such as a Platform) rather than providing a list of just the ones you want via SET. - Kevin Winter AdWords API Team --

Re: Unable to update/remove campaign criteria v201109

2011-12-12 Thread Kevin Winter
Hi Neha, The problem is the SET operator. Since these used to be CampaignTargets in a list, the only way to update the effective targets was the use SET to update the list of effective targets. However, now that these are CampaignCriteria in v201109, the correct way to update the list of

Re: Exact local search volume for keyword

2011-12-12 Thread Kevin Winter
Hi, The TargetingIdeaService can provide approximate data: http://code.google.com/apis/adwords/docs/reference/latest/TargetingIdeaService.MonthlySearchVolume.html However, the sandbox will not return back value estimates - it explicitly will return junk data. You will need to make requests

Re: Question About v201109 Campaign Targeting

2011-12-12 Thread Pete Lavetsky (AdWords API Guru)
Kevin, That's painful. It's a lot easier for developers to just talk to the API and say Hey, we want to SET our criteria to this absolute array of Criteria and have Google worry about the management of ADD / REMOVE. I can foresee tons of unintended targeting, and perhaps very expensively

Re: [PHP Client Library]

2011-12-12 Thread Kevin Winter
Hi, Are these examples being run against production or sandbox? The sandbox explicitly returns back dummy values: http://code.google.com/apis/adwords/docs/sandbox.html#behavior If this is sandbox and the SOAP xml returns back 0's, then this is expected behavior. Running against production

Re: Question About v201109 Campaign Targeting

2011-12-12 Thread Kevin Winter
Hi Pete, Thanks for the feedback. The move from Targets to Criteria made targeting for campaigns behave more similarly to targeting AdGroups using Criteria. I know that a common complaint of the old way of handling targets that that incrementally adding a single Location was significantly

Re: updating from Cross Client Report Download (ReportUtils::RunAsyncReport) to ReportUtils::DownloadReport

2011-12-12 Thread Kevin Winter
Hi, Given that AdHoc reports cost 0 units, the cost of requesting the report to you as a developer is the CPU cycles (and IO) required to request it. The cost to us from a server perspective is a bit more. However, if you as a developer don't know at report time whether or not there is data

Re: TargetingIdeaService Missing Classes? (v201109)

2011-12-12 Thread joel
Ok that makes sense. Thank you for the clarification Kevin! On Dec 12, 10:25 am, Kevin Winter kevin.win...@google.com wrote: Hi Joel,   The short answer is Yes, these are no longer available in the API.  For example, KeywordCategoryIdSearchParameter was replaced by

Invalid campaign name

2011-12-12 Thread Kevin
Hi, Why would adwords cares about the campaign name beside it has to be unique and within a specified length? We're getting CampaignError.INVALID_CAMPAIGN_NAME @ operations[0].operand.name when trying to add a campaign whose name contains a § character. -Kevin --

Change from client login to client ID re: API version

2011-12-12 Thread Reed
Just checking - the change from using client logins to only allowing client IDs for authentication is only for V201109 and later, right? thanks -reed -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com

Re: 500 Error from CampaignService (Perl)

2011-12-12 Thread David Torres
Hi Ovid, In order to successfully call any service you need to provide a valid SOAP XML body within your request, in this case you are just sending a blank request which only includes headers. A successful will look like in the section Create a SOAP request. of this tutorial

Keyword Details with Ad Performance report?

2011-12-12 Thread Prakash
Hi Team, I want keyword details with Ad performance report in single file. It will be great if i can achieve in single API call. Is it possible? If yes, any sample code will be really helpful. I am using v201109 version. Thanks -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find

Re: Question About v201109 Campaign Targeting

2011-12-12 Thread Kevin Winter
Hi Pete, Thanks again for the feedback. I'll bring it up to my team and get a discussion going on this. One of the challenges of that approach is knowing the right list to use. Previously everything fit neatly into a single list broken down by type. Now there are a bunch of individual

Re: [PHP Client Library] GetTrafficEstimates

2011-12-12 Thread jonasl
Thanks for your reply Kevin, By turning on full logging output and looking at the SOAP xml it contains just zeros. See below, the host is adwords.google.com (not sandbox). ?xml version=1.0? soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; soap:Header ResponseHeader

Re: How to create sandbox account using Java Client

2011-12-12 Thread Vijayraj Chauhan
Hi Kevin, Using GetAccountHierarchy example still gives the clientCustomerId as 0 for all the five sandbox accounts. While trying with the GetClientCustomerId example, I get an error as * ApiUsageError.INVALID_DATE_RANGE* * * Here is the code from that example which I am using... *

problem with Criterion

2011-12-12 Thread Mihail Podorojniy
Hello! Sorry, I'm junior in AdWords API. Tell me please. I'm using. Net library. I am trying to run an example AddCampaignTargetingCriteria.cs but it returns the error UNEXPECTED_INTERNAL_API_ERROR. Targeting doesn't work. Can you explain how to make targeting Gender, AgeRange etc. During adding