AdWords API Re: Criterion Stats in PHP

2010-03-10 Thread daniel.pl...@gmail.com
The examples show the dateRange being used in this way.

// For today's date.
$selector-dateRange = new DateRange(date('Ymd'), date('Ymd'));


Dan

On Mar 9, 10:06 pm, Mike-Indiana michaelyanda+...@gmail.com wrote:
 Hi Eric, could you help me out with the dateRange for stats? This is
 still pulling all stats, and not the daterange. The log does not even
 show the daterange, so I know I'm getting this wrong.

 Thanks:

         $selector-statsSelector = $criterionId;
         $selector-statsSelector = new DateRange();
         $selector-dateRange-min = '20100308';
         $selector-dateRange-max = '20100309';
         $selector-stats = $criterionId;

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Forcing errors in sandbox

2010-03-10 Thread Manuel
Hi all,
currently I'm migrating to v2009 and the sandbox is doing a nice job
for this so far...
At the moment I'm trying to deal with the error-handling and stumbled
upon:

http://code.google.com/intl/de/apis/adwords/docs/developer/adwords_api_sandbox.html#forcingerrorresponses

which says, that you just have to add the error-code to your email-
header (++121) for triggering that error.

Unfortunately, I'm getting an auth-exception (InvalidArgumentException
- The login request used a username or password that is not
recognized.)

I'm not quite sure if i'm using the proper email-header, since the
docs mention the following pattern: login_id++error_code

I've set my my email-field in auth.ini to myem...@address.com++121

Do I have to replace my email-address to some different ID or
something (if so - where do i find my ID ? ;-) )?

Thx in advance,
Manuel

PS: I'm using the PHP-Library

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API client reporting

2010-03-10 Thread freesystems.t...@gmail.com
Hi,

Plz let me know what is api service for getting client report in
v2009.

Thanks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: client reporting

2010-03-10 Thread Manuel
Hi,
as you can see on
http://adwordsapi.blogspot.com/2010/02/60-days-left-to-migrate-to-v200909.html
Report-Services haven't been migrated to v2009 yet.
I think that you'll find all important information and developments
about the API here at first.

Regards,
Manuel

On 10 Mrz., 14:34, freesystems.t...@gmail.com adwo...@kutenda.com
wrote:
 Hi,

 Plz let me know what is api service for getting client report in
 v2009.

 Thanks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Multiple accounts campaignservice get costs campaign

2010-03-10 Thread Bart
Hi,

I want to make a script that requests day by day the google costs of
my active campaigns.
I have in my MCC multiple accounts.

At this moment I'm able to have the adwords costs per campaign for one
google account (the account that I have configured in the clientId).
What is the best and cheapest way to do this for multiple accounts?

I don't know how I can do this for multiple accounts.

I have seen that there is a multiple account - option in the report
service (clientEmails, crossClient) I could be wrong but I don't think
this is the way to go for having my daily cost per campaign. I don't
want an email or a download link, I want the daily costs and put them
in a database.

At this moment I was thinking to duplicate the Adwords api classes for
each account and configure the clientId in the inifile seperatly.

I hope someone can point me to the best direction.

Thx

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Which Service in v2009 should I be using instead of v13 . TrafficEstimatorService

2010-03-10 Thread smar...@tacklefanatics.co.uk
I am totally new to the API and am finding the documentation on both
of the API and services confusing. Is there a TrafficEstimatorService
in v2009?

Also I am using .net libraries that I have downloaded from Google. The
app.config is causing me all sorts of problems, does this look right,
I just need to get one function of a service working

Thanks in Advance

Duncan

This is what I have
?xml version=1.0 encoding=utf-8 ?
configuration
  configSections
section name=AdWordsApi
 
type=com.google.api.adwords.lib.ApplicationConfiguration,google-api-
adwords-dotnet/
  /configSections
  AdWordsApi
!-- Change the appropriate flags to turn on SOAP logging. --
add key=LogPath value=C:\Logs\/
add key=LogToConsole value=false/
add key=LogToFile value=false/
add key=MaskCredentials value=true/

!-- Fill the following values if you plan to use a proxy server.--

add key=ProxyServer value=/
add key=ProxyUser value=/
add key=ProxyPassword value=/
add key=ProxyDomain value=/

!-- Uncomment this key if you want to disable gzip compression in
SOAP requests.--
!--add key=EnableGzipCompression value=false/--
!-- Fill the header values. --


!-- PROD --
!--   add key=CompanyName value=Tackle Fanatics/
add key=Email value=smar...@tacklefanatics.co.uk/
add key=Password value=***/
add key=ClientEmail value=smar...@tacklefanatics.co.uk/
add key=DeveloperToken value=***/--

!-- DEV --
add key=CompanyName value=Tackle Fanatics/
add key=Email value=smar...@tacklefanatics.co.uk/
add key=Password value=***/
add key=ClientEmail value=smar...@tacklefanatics.co.uk/
add key=DeveloperToken value=smar...@tacklefanatics.co.uk+
+GBP/

!-- Application token is now optional and will be ignored by the
server.--
!-- add key=ApplicationToken
value=ENTER_YOUR_APPLICATION_TOKEN_HERE/ --


!-- Uncomment this key and comment ClientEmail if you want to
specify
 customer id instead of customer email. --
!-- add key=ClientCustomerId
value=ENTER_YOUR_CLIENT_CUSTOMER_ID_HERE/ --

!-- Uncomment this if you want to reuse an authToken multiple
times. --
!--add key=AuthToken value=ENTER_YOUR_AUTH_TOKEN_HERE/ --

!-- Uncomment this key if you want to use v13 sandbox. --
add key=LegacyAdWordsApi.Url value=https://sandbox.google.com/


!-- Uncomment this key if you want to use AdWords API sandbox. --

 add key=AdWordsApi.Url value=https://adwords-
sandbox.google.com/
  /AdWordsApi
  system.web
webServices
  soapExtensionTypes
add type=com.google.api.adwords.lib.TraceExtension,
   google-api-adwords-dotnet priority=1/
add type=com.google.api.adwords.lib.ApiUnitsExtension,
   google-api-adwords-dotnet priority=1/
  /soapExtensionTypes
/webServices
  /system.web
  system.net
settings
  httpWebRequest maximumErrorResponseLength=-1  /
/settings
  /system.net
/configuration

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Rotation TextAds

2010-03-10 Thread AdWords API Advisor
Hi Alexis,

Please see my response in a previous thread:

  
http://groups.google.com/group/adwords-api/browse_thread/thread/ac08aa96eeac8b66/

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 4:49 am, Alexis ROUSSEAU arouss...@visiteonline.fr wrote:
 In my Google account, which I manage with the API, I have several
 campaigns(countrysides), in whom(which) are several groups, who contain
 announcements themselves.

 He can be that the same keyword can be in different groups and thus
 different campaigns, but I would want that my textAds display in a fair way,
 between all my groups and campaigns.

 I indeed have make the good regulations in the parameters of my campaign.
 My campaigns have the same budget.
 My identical keywords have an identical cpc.

 But during a research it still posts(shows) me only a single announcement (
 the inserted last one), not the others.

 Thank you for your help(assistant).

 Alexis

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: BulkMutateJobService

2010-03-10 Thread AdWords API Advisor
Hi Dan,

I'm not able to replicate that behavior, as my auto-generated client
accounts are returned with a customerId.  Do you have the SOAP XML
logs or requestId from a request that demonstrates this behavior?

Best,
- Eric

On Mar 9, 6:03 am, daniel.pl...@gmail.com daniel.pl...@gmail.com
wrote:
 AccountService.getAccountInfo() returns 0 for customer id for all 1 -
 5 sandbox accounts.

 Dan

 On Mar 8, 10:15 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi Daniel,

  In production environment you can obtain your customer id in the
  AdWords web interface.  For the sandbox environment this id can only
  be obtained by using the v13 AccountService.getAccountInfo() method.

  Best,
  - Eric Koleda, AdWords API Team

  On Mar 8, 10:05 am, daniel.pl...@gmail.com daniel.pl...@gmail.com
  wrote:

   After playing with the request, I've fixed an error, only to come up
   with an UNEXPECTED_INTERNAL_API_ERROR

   I still have yet to come up with an answer to the CUSTOMER_ID value,
   but I'm starting to think in the Sandbox it should be 0.

   [Mar 08 2010 13:26:36.00 - INFO] POST /api/adwords/job/v200909/
   BulkMutateJobService HTTP/1.1
   Host: adwords-sandbox.google.com
   Connection: Keep-Alive
   User-Agent: PHP-SOAP/5.2.9-0.dotdeb.2, gzip
   Accept-Encoding: gzip, deflate
   Content-Encoding: gzip
   Content-Type: text/xml; charset=utf-8
   SOAPAction: 
   Content-Length: 926

   ?xml version=1.0 encoding=UTF-8?
   SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
   envelope/ xmlns:ns1=https://adwords.google.com/api/adwords/cm/
   v200909 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
     SOAP-ENV:Header
       ns1:RequestHeader xsi:type=ns1:RequestHeader
           ** Hidden **
       /ns1:RequestHeader
     /SOAP-ENV:Header
     SOAP-ENV:Body
       ns1:mutate
         ns1:operation
           ns1:operatorADD/ns1:operator
           ns1:operand xmlns:ns1=https://adwords.google.com/api/adwords/
   cm/v200909 xsi:type=ns1:BulkMutateJob
             ns1:request
               ns1:partIndex0/ns1:partIndex
               ns1:operationStreams
                 ns1:scopingEntityId
                   ns1:typeCUSTOMER_ID/ns1:type
                   ns1:value0/ns1:value
                 /ns1:scopingEntityId
                 ns1:operations xmlns:ns1=https://adwords.google.com/
   api/adwords/cm/v200909 xsi:type=ns1:Campaign
                   ns1:nameFeed 1268054790: Amplifiers amp; Receivers/
   ns1:name
                   ns1:statusACTIVE/ns1:status
                   ns1:budget
                     ns1:periodDAILY/ns1:period
                     ns1:amount
                       ns1:microAmount1/ns1:microAmount
                     /ns1:amount
                     ns1:deliveryMethodACCELERATED/ns1:deliveryMethod
                   /ns1:budget
                   ns1:biddingStrategy xmlns:ns1=https://
   adwords.google.com/api/adwords/cm/v200909 xsi:type=ns1:ManualCPC/
                 /ns1:operations
               /ns1:operationStreams
             /ns1:request
             ns1:numRequestParts1/ns1:numRequestParts
           /ns1:operand
         /ns1:operation
       /ns1:mutate
     /SOAP-ENV:Body
   /SOAP-ENV:Envelope

   HTTP/1.1 500 Internal Server Error
   Content-Type: text/xml; charset=UTF-8
   Content-Encoding: gzip
   Transfer-Encoding: chunked
   Date: Mon, 08 Mar 2010 13:26:36 GMT
   Expires: Mon, 08 Mar 2010 13:26:36 GMT
   Cache-Control: private, max-age=0
   X-Content-Type-Options: nosniff
   X-Frame-Options: SAMEORIGIN
   Server: GSE
   X-XSS-Protection: 0

   ?xml version=1.0?
   soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
     soap:Body
       soap:Fault
         faultcodesoap:Server/faultcode
         faultstringInternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ /
   faultstring
         detail
           ApiExceptionFault xmlns=https://adwords.google.com/api/
   adwords/cm/v200909
             messageInternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ /
   message
             ApplicationException.TypeApiException/
   ApplicationException.Type
             errors xmlns:xsi=http://www.w3.org/2001/XMLSchema-
   instance xsi:type=InternalApiError
               fieldPath/
               trigger/
               ApiError.TypeInternalApiError/ApiError.Type
               reasonUNEXPECTED_INTERNAL_API_ERROR/reason
             /errors
           /ApiExceptionFault
         /detail
       /soap:Fault
     /soap:Body
   /soap:Envelope

   On Mar 8, 12:37 pm, daniel.pl...@gmail.com daniel.pl...@gmail.com
   wrote:

I'm confused about the BulkMutateJobService.

EntityId.Type says you can specify CUSTOMER_ID.

But what is valid value for CUSTOMER_ID?

I'm trying to get this working in teh Sandbox, and as far as I can
tell, there is no 000-0 ID for the accounts, and I've tried the
email address client_2+email, but that keeps changing to 0.

Thanks,

Dan

[Mar 08 2010 12:32:41.00 - INFO] 

AdWords API Re: Competetor ads

2010-03-10 Thread AdWords API Advisor
Hi Dave,

It's isn't possible to get information about competitors' ads using
the AdWords API.

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 1:22 am, Dave S daveste...@gmail.com wrote:
 Hello,

 We are trying to get the number of competetor adds and then drill down
 to view all the competetor ads and it URL. Please could you suggest
 how we get the data using google adwords API.

 Thanks.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Posting a conversion through API and obtaining the generated code

2010-03-10 Thread AdWords API Advisor
Hi Dave,

It's isn't possible to post a conversion, or obtain the javascript
code for conversion tracking, using the AdWords API.

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 1:25 am, Dave S daveste...@gmail.com wrote:
 Hello,

 We would like to know how we can post a conversion through API and
 thus obtain the code which we need to place in a website.

 Thanks.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Daily spend, Affiliate programs, number of Adds for a keyword

2010-03-10 Thread AdWords API Advisor
Hi Dave,

It's isn't possible to get that kind of information using the AdWords
API.  The best you can do is use the TargetingIdeaService to get STATS
on a keyword and return the COMPETITION attribute.  This is a 0 to 1
scale of how competitive the keyword is.

  
http://code.google.com/apis/adwords/v2009/docs/reference/TargetingIdeaService.AttributeType.html#COMPETITION

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 1:29 am, Dave S daveste...@gmail.com wrote:
 Hello,

 Please could you help us with how we can obtain the data for daily
 spend, affilate programs and number of adds  for a particular keyword
 using the API.

 Thanks.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: adwords new version question

2010-03-10 Thread AdWords API Advisor
Hi Jay,

The APIlity project has been deprecated, and there won't be support
added for the v200909 version of the API.  Instead we recommend using
the new (and more generically named) AdWords API PHP client library:

  http://code.google.com/p/google-api-adwords-php/

That site includes a video showing how to get up and running using the
client library.  We also have a migration video (based mostly in Java)
that gives some best practices for migrating your code from v13 to
v200909:

  http://www.youtube.com/watch?v=N-JWtfRjPCA

As always, if you have any questions during the process you can post
them to the forum.

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 1:46 am, Jay jvasdew...@gmail.com wrote:
 Hi Group,

 We are using Apility for our in house tool to create campaigns and
 auto bid on the keywords. As google will stop v13 and we have to use
 v2009, does anyone know if Apility Guys will come out with new
 version?

 If not whats easiest way to migrate?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: XML_STREAM_EXC faultstring

2010-03-10 Thread AdWords API Advisor
Hi Rofel,

You are getting this error because your XML is invalid.  You can check
your XML for validity using this online tool:

  http://validator.w3.org/#validate_by_input

In this case, your userAgent header field is being clodes with a /
developerToken tag, which is invalid.

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 2:12 am, rofelpcrush ro...@pcrush.com wrote:
 Hi,

 I'm new with Google AdWords API integration and stucked with Classic
 ASP. I was just wondering if someone can shed light to the
 XML_STREAM_EXC faultstring. Since there's no client library for
 Classic ASP, I had to resort to the old-fashioned way of sending XML
 over HTTPS. Here's the request sent to

 https://adwords.google.com/api/adwords/cm/v200909/CampaignService

 ?xml version='1.0' encoding='utf-8'?
 soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
         xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
         xmlns:xsd='http://www.w3.org/2001/XMLSchema'
 soap:Header
         RequestHeader xmlns='https://adwords.google.com/api/adwords/cm/
 v200909'
                 applicationToken/applicationToken
                 authToken/authToken
                 clientEmailem...@work.com/clientEmail
                 developerToken99/developerToken
                 userAgentrofel/developerToken
         /RequestHeader
 /soap:Header
 soap:Body
         get xmlns='https://adwords.google.com/api/adwords/cm/v200909'
                 selector /
         /get
 /soap:Body
 /soap:Envelope

 ...and the response is HTTP Error Code 500

 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/
 envelope/soap:Bodysoap:Faultfaultcodesoap:Client/
 faultcodefaultstringXML_STREAM_EXC/faultstring/soap:Fault/
 soap:Body/soap:Envelope

 This is just one of the first request that I'm trying to send to the
 CampaignService and can't move past this problem. Please help.

 Rofel

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Reg ScheduleJobReport

2010-03-10 Thread AdWords API Advisor
Hi Tria,

The error message isn't very helpful in this case, but the problem is
caused by not correctly defining your job object.  The job must be of
the type DefinedReportJob, as specified in the xsi:type attribute.
See this sample XML for an example of how to specify this attribute
correctly:

  
http://code.google.com/p/adwords-api-xml-samples/source/browse/trunk/src/v13/schedule_report_job.xml

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 2:29 am, tria tria tria.analyt...@gmail.com wrote:
 Hi,

 i passed the following as the parameters values
 soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/
 envelope/ xmlns:v13=https://adwords.google.com/api/adwords/v13;

    soapenv:Header

       v13:applicationTokenXX/
 v13:applicationToken

       v13:developerTokenXX/
 v13:developerToken

       v13:clientCustomerId1234533/v13:clientCustomerId

       v13:clientEmailx...@gmail.com/v13:clientEmail

       v13:emailx...@gmail.com/v13:email

       v13:passwordxyz/v13:password

       v13:useragentxyz/v13:useragent

    /soapenv:Header

    soapenv:Body

       v13:scheduleReportJob

          v13:job

             !--Zero or more repetitions:--

             v13:clientEmails/v13:clientEmails

             !--Optional:--

             v13:crossClientfalse/v13:crossClient

             v13:endDay2010-02-08/v13:endDay

             !--Optional:--

             v13:id?/v13:id

             !--Optional:--

             v13:name?/v13:name

             v13:startDay2010-02-08/v13:startDay

             !--Optional:--

             v13:status?/v13:status

          /v13:job

       /v13:scheduleReportJob

    /soapenv:Body

 /soapenv:Envelope

 But i am getting the following error

 soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/
 envelope/ xmlns:xsd=http://www.w3.org/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
    soapenv:Header
       responseTime soapenv:actor=http://schemas.xmlsoap.org/soap/
 actor/next soapenv:mustUnderstand=0 xmlns=https://
 adwords.google.com/api/adwords/v1318/responseTime
       operations soapenv:actor=http://schemas.xmlsoap.org/soap/actor/
 next soapenv:mustUnderstand=0 xmlns=https://adwords.google.com/api/
 adwords/v130/operations
       units soapenv:actor=http://schemas.xmlsoap.org/soap/actor/
 next soapenv:mustUnderstand=0 xmlns=https://adwords.google.com/api/
 adwords/v130/units
       requestId soapenv:actor=http://schemas.xmlsoap.org/soap/actor/
 next soapenv:mustUnderstand=0 xmlns=https://adwords.google.com/api/
 adwords/v1313e96dbec90d809a4394811347c547ae/requestId
    /soapenv:Header
    soapenv:Body
       soapenv:Fault
          faultcodesoapenv:Server.generalException/faultcode
          faultstringAn internal error has occurred.  Please retry
 your request./faultstring
          detail
             ns1:fault xmlns:ns1=https://adwords.google.com/api/
 adwords/v13
                ns1:code0/ns1:code
                ns1:messageAn internal error has occurred.  Please
 retry your request./ns1:message
             /ns1:fault
          /detail
       /soapenv:Fault
    /soapenv:Body
 /soapenv:Envelope

 Can u please help to solve the error

 Regards

 Tria

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: clientId for MCC

2010-03-10 Thread AdWords API Advisor
Hi Dovid,

This can be done by using the method
AccountService.getClientAccounts()

  
http://code.google.com/apis/adwords/docs/developer/AccountService.html#getClientAccounts

This will return the email address of each client account of an MCC.
The ids of the clients must be fetched one at a time however.  For
each client, set the clientEmail header of the request to that
client's email address and then run AccountService.getAccountInfo()

  
http://code.google.com/apis/adwords/docs/developer/AccountService.html#getAccountInfo

This response will include the client id for that client, as well as
other useful information.

Best,
- Eric Koleda, AdWords API Team

On Mar 9, 6:24 am, Dovid dyu...@gmail.com wrote:
 Is there a way to retrieve a list of client Ids (together with email
 address for that client) for a given MCC account via the API? Or do I
 need to look up my client IDs in another way?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Criterion Stats in PHP

2010-03-10 Thread AdWords API Advisor
Hi Mike,

The hierarchy of objects should be:

AdGroupCriterionSelector
|_ StatsSelector
   |_ DateRange


Here is an example:

$selector = new CampaignSelector();
$selector-statsSelector = new StatsSelector();
$selector-statsSelector-dateRange = new DateRange('20090101',
'20090131');

Best,
- Eric Koleda, AdWords API Team


On Mar 9, 5:06 pm, Mike-Indiana michaelyanda+...@gmail.com wrote:
 Hi Eric, could you help me out with the dateRange for stats? This is
 still pulling all stats, and not the daterange. The log does not even
 show the daterange, so I know I'm getting this wrong.

 Thanks:

         $selector-statsSelector = $criterionId;
         $selector-statsSelector = new DateRange();
         $selector-dateRange-min = '20100308';
         $selector-dateRange-max = '20100309';
         $selector-stats = $criterionId;

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Report services

2010-03-10 Thread AdWords API Advisor
Hi,

MCC accounts cannot have campaigns of their own, so if you run a
report as an MCC without crossClient=true then there are no campaigns
to run reports on.  If you only want to run reports on only one client
then you should set the clientEmail header in the request and set
crossClient=false.

Best,
- Eric

On Mar 9, 6:06 pm, dreadjr drea...@gmail.com wrote:
 I am seeing something similar.

 For example I have a child-MCC account.  I am pulling a keyword report
 for a single campaignId and date.

 DefinedReportJob job = new DefinedReportJob();
 job.selectedReportType = Keyword;

 job.crossClient = true;
 job.crossClientSpecified = true;

 When i run the report like this I get data back in the report.
 If i change job.crossClient = false then the report comes back with no
 data in it.

 Can you query a login to see if it is mcc?
 Why do you have to set this flag in order to see data?

 On Feb 17, 12:31 pm, AdWords API Advisor



 adwordsapiadvi...@google.com wrote:
  Hi Sheetal,

  Please be aware that reports made against the sandbox environment will
  not return any data.  Also, please check to ensure that there is data
  for the date range you have selected.

  Best,
  - Eric Koleda, AdWords API Team

  On Feb 17, 1:03 am, Almas Kanjiyani kanjiyanial...@gmail.com wrote:

   Hi Sheetal,

   One of the reason for empty reports might be that your AdWords account
   is temporarily cancelled or all your campaigns are paused.

   I am not sure though. This could be a reason. Get in touch with the
   AdWords support team to resolve it.

   Thanks,
   Almas

   On Feb 15, 6:11 pm, sheetal aaryash...@gmail.com wrote:

Hi,

Anyone there to help me...very urgent...

I want to use report services for fetching reports like clicks 
impression .i am using DownloadReportAsXmlDemo.cs
of v13  download the report in XML format...I am getting The Validate
report  report status  as completed .But still I am getting report
like this...

?xml version=1.0 standalone=yes?

reporttablecolumnscolumn name=date/columncolumn
name=campaign/columncolumn name=adgroup/columncolumn

name=keyword/columncolumn name=kwStatus/columncolumn
name=keywordMinCpc/columncolumn

name=kwDestUrl/columncolumn name=imps/columncolumn
name=clicks/columncolumn name=ctr/columncolumn

name=pos/column/columnsrows/rows/tabletotalsgrandtotal
imps=0 clicks=0 ctr=0.0

pos=0.0/grandtotal/totals/report

I want all account information so I am include
       DefinedReportJob reportJob = new DefinedReportJob();
            reportJob.crossClient= true;

Any help would be appreciated.

sheetal

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: can't login with user

2010-03-10 Thread AdWords API Advisor
Hi,

I found this entry in the logs, and the customer ID you are specifying
in the clientCustomerId header doesn't seem to exist in the AdWords
system.  Where did you get this value from?

Best,
- Eric

On Mar 10, 3:52 am, NVB adwo...@nationalevacaturebank.nl wrote:
 The requestId is 6abddfbc60b4f937a3162078c034c84d

 On 9 mrt, 22:09, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi,

  There is a header included in the response called requestId that
  includes this value.  If you look at the raw SOAP XML logs you can see
  this information.

  Best,
  - Eric

  On Mar 9, 8:08 am, NVB adwo...@nationalevacaturebank.nl wrote:

   Where can I find the requestId?

   This error i get:

   [previous:Exception:private] =
       [faultstring] = AuthenticationError.CUSTOMER_NOT_FOUND @ ;
   trigger:'8443638926'
       [faultcode] = soap:Server
       [detail] = stdClass Object
           (
               [ApiExceptionFault] = stdClass Object
                   (
                       [message] =
   AuthenticationError.CUSTOMER_NOT_FOUND @ ; trigger:'8443638926'
                       [ApplicationException.Type] = ApiException
                       [errors] = SoapVar Object
                           (
                               [enc_type] = 0
                               [enc_value] = AuthenticationError Object
                                   (
                                       [reason] = CUSTOMER_NOT_FOUND
                                       [fieldPath] =
                                       [trigger] = 8443638926
                                       [ApiErrorType] =
   AuthenticationError
                                       [_parameterMap:ApiError:private]
   = Array
                                           (
                                               [ApiError.Type] =
   ApiErrorType
                                           )

                                   )

                               [enc_stype] = AuthenticationError
                               [enc_ns] 
   =https://adwords.google.com/api/adwords/cm/v200909
                           )

                   )

           )

   On 4 mrt, 20:39, AdWords API Advisor adwordsapiadvi...@google.com
   wrote:

Hi,

Do you have the requestId for a request that demonstrates this
behavior?

Best,
- Eric Koleda, AdWords API Team

On Mar 3, 10:00 am, NVB adwo...@nationalevacaturebank.nl wrote:

 I have tried everything and i have used each clientid which i could
 find in my mcc, but i still can't login with a clientid.I use the PHP
 client library and i always get this error:
 AuthenticationError.CUSTOMER_NOT_FOUND

 How can i login with a clientid??

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Getting only campaign stats

2010-03-10 Thread jean robert
Hi,
i want to know if it is possible to get only campaign stats (without
campaign's name, campaign's status, ...) in v2009 as we can do in v13
(getCampaignStats)

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Report services

2010-03-10 Thread dreadjr
Thanks for information Eric.
I just had one follow up question.

So can i, for any login (MCC, child-MCC, or regular login) just add
the login to the clientEmail header and set crossClient=false?
Basically I am looking for a way to run all report exactly the same
way.  We always pull a report for campaigns the login has access to.

thanks
doug

On Mar 10, 7:43 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi,

 MCC accounts cannot have campaigns of their own, so if you run a
 report as an MCC without crossClient=true then there are no campaigns
 to run reports on.  If you only want to run reports on only one client
 then you should set the clientEmail header in the request and set
 crossClient=false.

 Best,
 - Eric

 On Mar 9, 6:06 pm, dreadjr drea...@gmail.com wrote:



  I am seeing something similar.

  For example I have a child-MCC account.  I am pulling a keyword report
  for a single campaignId and date.

  DefinedReportJob job = new DefinedReportJob();
  job.selectedReportType = Keyword;

  job.crossClient = true;
  job.crossClientSpecified = true;

  When i run the report like this I get data back in the report.
  If i change job.crossClient = false then the report comes back with no
  data in it.

  Can you query a login to see if it is mcc?
  Why do you have to set this flag in order to see data?

  On Feb 17, 12:31 pm, AdWords API Advisor

  adwordsapiadvi...@google.com wrote:
   Hi Sheetal,

   Please be aware that reports made against the sandbox environment will
   not return any data.  Also, please check to ensure that there is data
   for the date range you have selected.

   Best,
   - Eric Koleda, AdWords API Team

   On Feb 17, 1:03 am, Almas Kanjiyani kanjiyanial...@gmail.com wrote:

Hi Sheetal,

One of the reason for empty reports might be that your AdWords account
is temporarily cancelled or all your campaigns are paused.

I am not sure though. This could be a reason. Get in touch with the
AdWords support team to resolve it.

Thanks,
Almas

On Feb 15, 6:11 pm, sheetal aaryash...@gmail.com wrote:

 Hi,

 Anyone there to help me...very urgent...

 I want to use report services for fetching reports like clicks 
 impression .i am using DownloadReportAsXmlDemo.cs
 of v13  download the report in XML format...I am getting The Validate
 report  report status  as completed .But still I am getting report
 like this...

 ?xml version=1.0 standalone=yes?

 reporttablecolumnscolumn name=date/columncolumn
 name=campaign/columncolumn name=adgroup/columncolumn

 name=keyword/columncolumn name=kwStatus/columncolumn
 name=keywordMinCpc/columncolumn

 name=kwDestUrl/columncolumn name=imps/columncolumn
 name=clicks/columncolumn name=ctr/columncolumn

 name=pos/column/columnsrows/rows/tabletotalsgrandtotal
 imps=0 clicks=0 ctr=0.0

 pos=0.0/grandtotal/totals/report

 I want all account information so I am include
        DefinedReportJob reportJob = new DefinedReportJob();
             reportJob.crossClient= true;

 Any help would be appreciated.

 sheetal

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: Report services

2010-03-10 Thread dreadjr
Thanks for information Eric.
I just had one follow up question.

So can i, for any login (MCC, child-MCC, or regular login) just add
the login to the clientEmail header and set crossClient=false?
Basically I am looking for a way to run all report exactly the same
way.  We always pull a report for campaigns the login has access to.

thanks very much.

On Mar 10, 7:43 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi,

 MCC accounts cannot have campaigns of their own, so if you run a
 report as an MCC without crossClient=true then there are no campaigns
 to run reports on.  If you only want to run reports on only one client
 then you should set the clientEmail header in the request and set
 crossClient=false.

 Best,
 - Eric

 On Mar 9, 6:06 pm, dreadjr drea...@gmail.com wrote:



  I am seeing something similar.

  For example I have a child-MCC account.  I am pulling a keyword report
  for a single campaignId and date.

  DefinedReportJob job = new DefinedReportJob();
  job.selectedReportType = Keyword;

  job.crossClient = true;
  job.crossClientSpecified = true;

  When i run the report like this I get data back in the report.
  If i change job.crossClient = false then the report comes back with no
  data in it.

  Can you query a login to see if it is mcc?
  Why do you have to set this flag in order to see data?

  On Feb 17, 12:31 pm, AdWords API Advisor

  adwordsapiadvi...@google.com wrote:
   Hi Sheetal,

   Please be aware that reports made against the sandbox environment will
   not return any data.  Also, please check to ensure that there is data
   for the date range you have selected.

   Best,
   - Eric Koleda, AdWords API Team

   On Feb 17, 1:03 am, Almas Kanjiyani kanjiyanial...@gmail.com wrote:

Hi Sheetal,

One of the reason for empty reports might be that your AdWords account
is temporarily cancelled or all your campaigns are paused.

I am not sure though. This could be a reason. Get in touch with the
AdWords support team to resolve it.

Thanks,
Almas

On Feb 15, 6:11 pm, sheetal aaryash...@gmail.com wrote:

 Hi,

 Anyone there to help me...very urgent...

 I want to use report services for fetching reports like clicks 
 impression .i am using DownloadReportAsXmlDemo.cs
 of v13  download the report in XML format...I am getting The Validate
 report  report status  as completed .But still I am getting report
 like this...

 ?xml version=1.0 standalone=yes?

 reporttablecolumnscolumn name=date/columncolumn
 name=campaign/columncolumn name=adgroup/columncolumn

 name=keyword/columncolumn name=kwStatus/columncolumn
 name=keywordMinCpc/columncolumn

 name=kwDestUrl/columncolumn name=imps/columncolumn
 name=clicks/columncolumn name=ctr/columncolumn

 name=pos/column/columnsrows/rows/tabletotalsgrandtotal
 imps=0 clicks=0 ctr=0.0

 pos=0.0/grandtotal/totals/report

 I want all account information so I am include
        DefinedReportJob reportJob = new DefinedReportJob();
             reportJob.crossClient= true;

 Any help would be appreciated.

 sheetal

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: adwords new version question

2010-03-10 Thread Jay
Thanks Eric, we will have a look.

On Mar 10, 8:22 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Jay,

 The APIlity project has been deprecated, and there won't be support
 added for the v200909 version of the API.  Instead we recommend using
 the new (and more generically named) AdWords API PHP client library:

  http://code.google.com/p/google-api-adwords-php/

 That site includes a video showing how to get up and running using the
 client library.  We also have a migration video (based mostly in Java)
 that gives some best practices for migrating your code from v13 to
 v200909:

  http://www.youtube.com/watch?v=N-JWtfRjPCA

 As always, if you have any questions during the process you can post
 them to the forum.

 Best,
 - Eric Koleda, AdWords API Team

 On Mar 9, 1:46 am, Jay jvasdew...@gmail.com wrote:

  Hi Group,

  We are using Apility for our in house tool to create campaigns and
  auto bid on the keywords. As google will stop v13 and we have to use
  v2009, does anyone know if Apility Guys will come out with new
  version?

  If not whats easiest way to migrate?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API is sandbox (for v200906) up?

2010-03-10 Thread vlad
Why does this error happen?



?xml version=1.0 encoding=UTF-8?
SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
envelope/ xmlns:ns1=https://adwords.google.com/api/adwords/cm/
v200909 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  SOAP-ENV:Header
ns1:RequestHeader xsi:type=ns1:RequestHeader
  ns1:applicationToken012345678912345678912/
ns1:applicationToken
  ns1:authToken*/ns1:authToken
  ns1:developerToken/ns1:developerToken
  ns1:userAgentPHP v5.2.6-3ubuntu4.2 - AdWords API PHP Client
Library - v1.2.2 - /ns1:userAgent
/ns1:RequestHeader
  /SOAP-ENV:Header
  SOAP-ENV:Body
ns1:get xsi:type=get
  ns1:selector xmlns:ns1=https://adwords.google.com/api/adwords/
cm/v200909 xsi:type=ns1:CampaignSelector/
/ns1:get
  /SOAP-ENV:Body
/SOAP-ENV:Envelope


HTTP/1.1 500 Internal Server Error
Content-Type: text/xml; charset=UTF-8
Date: Wed, 10 Mar 2010 21:59:04 GMT
Expires: Wed, 10 Mar 2010 21:59:04 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Server: GSE
X-XSS-Protection: 0
Transfer-Encoding: chunked

?xml version=1.0?
soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
  soap:Body
soap:Fault
  faultcodesoap:Server/faultcode
  faultstringUnmarshalling Error: cvc-elt.4.2: Cannot resolve
'get' to a type definition for element 'ns1:get'. /faultstring
/soap:Fault
  /soap:Body
/soap:Envelope


vlad


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-10 Thread vlad
It's v200909



On Mar 10, 4:04 pm, vlad vlad.c...@gmail.com wrote:
 Why does this error happen?

 ?xml version=1.0 encoding=UTF-8?
 SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
 envelope/ xmlns:ns1=https://adwords.google.com/api/adwords/cm/
 v200909 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
   SOAP-ENV:Header
     ns1:RequestHeader xsi:type=ns1:RequestHeader
       ns1:applicationToken012345678912345678912/
 ns1:applicationToken
       ns1:authToken*/ns1:authToken
       ns1:developerToken/ns1:developerToken
       ns1:userAgentPHP v5.2.6-3ubuntu4.2 - AdWords API PHP Client
 Library - v1.2.2 - /ns1:userAgent
     /ns1:RequestHeader
   /SOAP-ENV:Header
   SOAP-ENV:Body
     ns1:get xsi:type=get
       ns1:selector xmlns:ns1=https://adwords.google.com/api/adwords/
 cm/v200909 xsi:type=ns1:CampaignSelector/
     /ns1:get
   /SOAP-ENV:Body
 /SOAP-ENV:Envelope

 HTTP/1.1 500 Internal Server Error
 Content-Type: text/xml; charset=UTF-8
 Date: Wed, 10 Mar 2010 21:59:04 GMT
 Expires: Wed, 10 Mar 2010 21:59:04 GMT
 Cache-Control: private, max-age=0
 X-Content-Type-Options: nosniff
 X-Frame-Options: SAMEORIGIN
 Server: GSE
 X-XSS-Protection: 0
 Transfer-Encoding: chunked

 ?xml version=1.0?
 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
   soap:Body
     soap:Fault
       faultcodesoap:Server/faultcode
       faultstringUnmarshalling Error: cvc-elt.4.2: Cannot resolve
 'get' to a type definition for element 'ns1:get'. /faultstring
     /soap:Fault
   /soap:Body
 /soap:Envelope

 vlad

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: XML_STREAM_EXC faultstring

2010-03-10 Thread rofelpcrush
Hi Eric,

Thanks for the response. I figured out the error right before I got
your response.

Is there something wrong with Sandbox today? I've been getting the
following errors all day (March 10, 2010):

FAILED_TO_AUTHENTICATE_GOOGLE_ACCOUNT
Unmarshalling Error: cvc-datatype-valid.1.2.1: '' is not a valid value
for 'integer'.

The code was working until early this morning at 10AM PST.

Thanks.

Rofel



On Mar 10, 7:25 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Rofel,

 You are getting this error because your XML is invalid.  You can check
 your XML for validity using this online tool:

  http://validator.w3.org/#validate_by_input

 In this case, your userAgent header field is being clodes with a /
 developerToken tag, which is invalid.

 Best,
 - Eric Koleda, AdWords API Team

 On Mar 9, 2:12 am, rofelpcrush ro...@pcrush.com wrote:

  Hi,

  I'm new with Google AdWords API integration and stucked with Classic
  ASP. I was just wondering if someone can shed light to the
  XML_STREAM_EXC faultstring. Since there's no client library for
  Classic ASP, I had to resort to the old-fashioned way of sending XML
  over HTTPS. Here's the request sent to

 https://adwords.google.com/api/adwords/cm/v200909/CampaignService

  ?xml version='1.0' encoding='utf-8'?
  soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
          xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
          xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  soap:Header
          RequestHeader xmlns='https://adwords.google.com/api/adwords/cm/
  v200909'
                  applicationToken/applicationToken
                  authToken/authToken
                  clientEmailem...@work.com/clientEmail
                  developerToken99/developerToken
                  userAgentrofel/developerToken
          /RequestHeader
  /soap:Header
  soap:Body
          get xmlns='https://adwords.google.com/api/adwords/cm/v200909'
                  selector /
          /get
  /soap:Body
  /soap:Envelope

  ...and the response is HTTP Error Code 500

  soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/
  envelope/soap:Bodysoap:Faultfaultcodesoap:Client/
  faultcodefaultstringXML_STREAM_EXC/faultstring/soap:Fault/
  soap:Body/soap:Envelope

  This is just one of the first request that I'm trying to send to the
  CampaignService and can't move past this problem. Please help.

  Rofel

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200909) up?

2010-03-10 Thread rofelpcrush
Hi vlad,

I'm experiencing the same problems since around 10AM PST today. Also
got this error message when trying to add a new AdGroup:

- soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/
envelope/
- soap:Header
- ResponseHeader xmlns=https://adwords.google.com/api/adwords/cm/
v200909
  requestIde368dd36984372c571e3d6544ead8030/requestId
  operations0/operations
  responseTime71/responseTime
  units0/units
  /ResponseHeader
  /soap:Header
- soap:Body
- soap:Fault
  faultcodesoap:Server/faultcode
 
faultstringAuthenticationError.FAILED_TO_AUTHENTICATE_GOOGLE_ACCOUNT
@/faultstring
- detail
- ApiExceptionFault xmlns=https://adwords.google.com/api/adwords/cm/
v200909
  messageAuthenticationError.FAILED_TO_AUTHENTICATE_GOOGLE_ACCOUNT
@/message
  ApplicationException.TypeApiException/ApplicationException.Type
- errors xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xsi:type=AuthenticationError
  fieldPath /
  trigger /
  ApiError.TypeAuthenticationError/ApiError.Type
  reasonFAILED_TO_AUTHENTICATE_GOOGLE_ACCOUNT/reason
  /errors
  /ApiExceptionFault
  /detail
  /soap:Fault
  /soap:Body
  /soap:Envelope

The same code is working up to early this morning.

Rofel

On Mar 10, 3:11 pm, vlad vlad.c...@gmail.com wrote:
 It's v200909

 On Mar 10, 4:04 pm, vlad vlad.c...@gmail.com wrote:

  Why does this error happen?

  ?xml version=1.0 encoding=UTF-8?
  SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
  envelope/ xmlns:ns1=https://adwords.google.com/api/adwords/cm/
  v200909 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
    SOAP-ENV:Header
      ns1:RequestHeader xsi:type=ns1:RequestHeader
        ns1:applicationToken012345678912345678912/
  ns1:applicationToken
        ns1:authToken*/ns1:authToken
        ns1:developerToken/ns1:developerToken
        ns1:userAgentPHP v5.2.6-3ubuntu4.2 - AdWords API PHP Client
  Library - v1.2.2 - /ns1:userAgent
      /ns1:RequestHeader
    /SOAP-ENV:Header
    SOAP-ENV:Body
      ns1:get xsi:type=get
        ns1:selector xmlns:ns1=https://adwords.google.com/api/adwords/
  cm/v200909 xsi:type=ns1:CampaignSelector/
      /ns1:get
    /SOAP-ENV:Body
  /SOAP-ENV:Envelope

  HTTP/1.1 500 Internal Server Error
  Content-Type: text/xml; charset=UTF-8
  Date: Wed, 10 Mar 2010 21:59:04 GMT
  Expires: Wed, 10 Mar 2010 21:59:04 GMT
  Cache-Control: private, max-age=0
  X-Content-Type-Options: nosniff
  X-Frame-Options: SAMEORIGIN
  Server: GSE
  X-XSS-Protection: 0
  Transfer-Encoding: chunked

  ?xml version=1.0?
  soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
    soap:Body
      soap:Fault
        faultcodesoap:Server/faultcode
        faultstringUnmarshalling Error: cvc-elt.4.2: Cannot resolve
  'get' to a type definition for element 'ns1:get'. /faultstring
      /soap:Fault
    /soap:Body
  /soap:Envelope

  vlad

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API v2009 limits documentation

2010-03-10 Thread pmac72
Are the limits for various fields listed anywhere in the v2009
documentation?

For a simple, example the v13 documentation tells the length limits
for a text ad in the docs here:
http://code.google.com/apis/adwords/docs/developer/TextAd.html

However the similar v2009 documentation does not:
http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupAdService.TextAd.html

That is a trivial example.  I've seen/heard other limits mentioned in
the Hack Day videos as I've been listing to them in the background.  I
can't seem to find these numbers in the docs.  There was mention of
hard limits on the BulkMutateJobService submissions that I cannot
find.  Also this video mentions a nine manually created address limit:
http://www.youtube.com/watch?v=10L6rH4A7hQ#t=7m12s


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: EntityNotFound.INVALID_ID

2010-03-10 Thread Albert
i have to disagree with Eric,

we've been having this issue for about a month now (using .net/c#). no
data is corrupted. our soap logs clearly show that.

adwords have confirmed that the problem is on their side - but we
haven't received a solution so far.

we've pulled a structure report for the campaign containing the object
ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
them has a DELETED status.

i've emailed adwords support many soap logs on that, let me know if
you need me to put some here as well,

regards,
albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: can't login with user

2010-03-10 Thread NVB
I already know what i did wrong, i use a client id with the - stupid
of me ..

On 10 mrt, 16:45, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi,

 I found this entry in the logs, and the customer ID you are specifying
 in the clientCustomerId header doesn't seem to exist in the AdWords
 system.  Where did you get this value from?

 Best,
 - Eric

 On Mar 10, 3:52 am, NVB adwo...@nationalevacaturebank.nl wrote:



  The requestId is 6abddfbc60b4f937a3162078c034c84d

  On 9 mrt, 22:09, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Hi,

   There is a header included in the response called requestId that
   includes this value.  If you look at the raw SOAP XML logs you can see
   this information.

   Best,
   - Eric

   On Mar 9, 8:08 am, NVB adwo...@nationalevacaturebank.nl wrote:

Where can I find the requestId?

This error i get:

[previous:Exception:private] =
    [faultstring] = AuthenticationError.CUSTOMER_NOT_FOUND @ ;
trigger:'8443638926'
    [faultcode] = soap:Server
    [detail] = stdClass Object
        (
            [ApiExceptionFault] = stdClass Object
                (
                    [message] =
AuthenticationError.CUSTOMER_NOT_FOUND @ ; trigger:'8443638926'
                    [ApplicationException.Type] = ApiException
                    [errors] = SoapVar Object
                        (
                            [enc_type] = 0
                            [enc_value] = AuthenticationError Object
                                (
                                    [reason] = CUSTOMER_NOT_FOUND
                                    [fieldPath] =
                                    [trigger] = 8443638926
                                    [ApiErrorType] =
AuthenticationError
                                    [_parameterMap:ApiError:private]
= Array
                                        (
                                            [ApiError.Type] =
ApiErrorType
                                        )

                                )

                            [enc_stype] = AuthenticationError
                            [enc_ns] 
=https://adwords.google.com/api/adwords/cm/v200909
                        )

                )

        )

On 4 mrt, 20:39, AdWords API Advisor adwordsapiadvi...@google.com
wrote:

 Hi,

 Do you have the requestId for a request that demonstrates this
 behavior?

 Best,
 - Eric Koleda, AdWords API Team

 On Mar 3, 10:00 am, NVB adwo...@nationalevacaturebank.nl wrote:

  I have tried everything and i have used each clientid which i could
  find in my mcc, but i still can't login with a clientid.I use the 
  PHP
  client library and i always get this error:
  AuthenticationError.CUSTOMER_NOT_FOUND

  How can i login with a clientid??

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en