Re: TargetingIdeaService and Paging

2010-08-30 Thread AdWords API Advisor
Hi, TargetingIdeaService.get results are limited to 800, it isn't possible to bypass this limit. Cheers, Anash P. Oommen, AdWords API Advisor. On Aug 27, 1:00 am, bng wrote: > Hi AdWords Team, > > Is there anyway we can get more than 800 number of results for a > req().  For example if I use Re

Modify already published campaigns

2010-08-30 Thread CPicou
Hi, I want to use the APIs (.NET client library) to modify some existing campaigns that have been already published (with Google Adwords Editor). My problem : if I understand the API philosophy, to retrieve, for example, an AdGroup, I have to do a GET request with the AdGroupService. This GET will

Re: How To Retrieve Deleted Ads

2010-08-30 Thread AdWords API Advisor
Hi Bobby, In v201003 version of the AdWords API, you can do this by retrieving ads with status = "DISABLED". See http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201003/GetAllAds.php for a code example. Cheers, Anash P. Oommen, AdWords API Advisor On Aug 27, 6:46 pm,

Re: API v201003 and Report Definition for daily performance

2010-08-30 Thread AdWords API Advisor
Hi Bobby, See http://code.google.com/p/google-api-adwords-java/source/browse/trunk/examples/v201003/AddKeywordsPerformanceReportDefinition.java for a code example that adds a report definition, and http://code.google.com/p/google-api-adwords-java/source/browse/trunk/examples/v201003/DownloadRepor

Re: Server speed

2010-08-30 Thread AdWords API Advisor
Hi, Are you using the PHP client library? Also, which is the text file you are referring to? Cheers, Anash P. Oommen, AdWords API Advisor. On Aug 27, 6:30 pm, phpguy wrote: > So for the past 3 days my script runs great for the first 12 hours. > It writes to a text file which gets very large but

Re: Modify already published campaigns

2010-08-30 Thread AdWords API Advisor
Hi, It is possible to retrieve all campaigns in an account using the CampaignService.get method. To do this, you should pass an empty selector to the get(). For instance, http://code.google.com/p/google-api-adwords-dotnet/source/browse/trunk/Examples/v201003/GetCampaign.cs retrieves a specified c

Re: UNEXPECTED_INTERNAL_API_ERROR

2010-08-30 Thread AdWords API Advisor
Hi, I'll check with the AdWords team today and update you once I hear from them. Cheers, Anash P. Oommen, AdWords API Advisor. On Aug 28, 3:21 am, jhgd wrote: > I have a report definition for Ad Performance that I'm unable to > download. I'm unsure of what predicate to use, but I've tried both

Re: Modify already published campaigns

2010-08-30 Thread CPicou
Thank you ! I was misunderstanding the sentence "This field must not contain null elements." I thought that IDs have to be specified. On 30 août, 12:04, AdWords API Advisor wrote: > Hi, > > It is possible to retrieve all campaigns in an account using the > CampaignService.get method. To do this,

Re: cannot use the adwords api sandbox.

2010-08-30 Thread AdWords API Advisor
Hi, You shouldn't construct the factory to create a service object, instead you should use the getXService method of AdWordsUser to create service X. For instance, $user = new AdWordsUser(); $campaignService = $user->GetCampaignService('v201003', 'https:// adwords-sandbox.google.com'); creat

Re: View geoTargetList

2010-08-30 Thread aBsTrAcT
Okay thanks and secondly, how many geo targets I can add at a time. I am planning to add around 1 proximity targets. And if I want to disable them all, will I need to SET each and every target again? or Is there any way, that I can delete all targets with 1 call and then add the ones I need? T

Re: Server speed

2010-08-30 Thread phpguy
Hi Anash - Yes it was the PHP server but I found the problem at hand and am working to resolve it. Thanks for the comment back. Appreciate it! On Aug 30, 5:54 am, AdWords API Advisor wrote: > Hi, > > Are you using the PHP client library? Also, which is the text file you > are referring to? > > C

Setting Status on an Adgroup

2010-08-30 Thread RedZoneGlobal
Sending: http://schemas.xmlsoap.org/soap/ envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/ encoding/"> ### ### # RedZoneGlobal false https:/

Re: Setting Status on an Adgroup

2010-08-30 Thread AdWords API Advisor
Hi, Your SOAP request is not a valid xml, you are missing the xml namespace definition for v20 prefix. The server throws XML_STREAM_EXC when it encounters an invalid SOAP request xml. Cheers, Anash P. Oommen, AdWords API Advisor. On Aug 30, 11:35 pm, RedZoneGlobal wrote: > Sending: > > > http:

Re: UNEXPECTED_INTERNAL_API_ERROR

2010-08-30 Thread jhgd
Much appreciated. On Aug 30, 3:13 am, AdWords API Advisor wrote: > Hi, > > I'll check with the AdWords team today and update you once I hear from > them. > > Cheers, > Anash P. Oommen, > AdWords API Advisor. > > On Aug 28, 3:21 am, jhgd wrote: > > > > > I have a report definition for Ad Performa

Re: UNEXPECTED_INTERNAL_API_ERROR

2010-08-30 Thread AdWords API Advisor
Hi, The AdWords team updated me that you are providing "ACTIVE" as the filter value for AdGroupAd status. The valid values are ENABLED, PAUSED and DISABLED. Can you confirm if this is the case? Cheers, Anash P. Oommen, AdWords API Advisor. On Aug 30, 3:13 pm, AdWords API Advisor wrote: > Hi, >

Re: Developer token not showing in account

2010-08-30 Thread Danny
Me 3... have you guys found any answers/workarounds? On Aug 27, 9:24 am, "cy...@espai-web.es" wrote: > Hi, > > I have exactly the same problem I received the confirmation email > today but nothing in my Adwords > API center section. > > On 27 août, 10:06, biesbjerg wrote: > > > > > I just got an

Re: Wrong fields returned by v201003 reporting service

2010-08-30 Thread AdWords API Advisor
Hi MT, Is this issue replicable at your end? If yes, can you post the request id for adding the reportdefinition and report definition id? Anash On Aug 16, 2:36 pm, AdWords API Advisor wrote: > Hi MT, > > Thanks for pointing this out, I'll bring this to the notice of AdWords > team. > > Cheers,

Re: Setting Status on an Adgroup

2010-08-30 Thread RedZoneGlobal
Thanks Anash! We're using two distinct SOAP ActiveX controls in the process, and I had added the second one for setting status on adgroups, and forgot to set the boolean to true to add the namespaces for v20, on the first execution. Keith On Aug 31, 12:17 am, AdWords API Advisor wrote: > Hi, > >