Hi,

This is my first post here, but hopefully not my last.

I'm writing a series of Classic ASP pages to create a report that
mimics functionality from the v13 API which is being sunsetted
shortly. Because of the Classic ASP requirement I can't use any of the
Client Librarys so I'm having to do things manually

I have no issue creating the report, but I am having some issues
getting a list of Client Account CID's using the
ServicedAccountService. (as suggested in the Java code that makes use
of AdHoc reporting for multiple clients.)

https://adwords.google.com/api/adwords/mcm/v201109/ServicedAccountService

Posting this :
<?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/mcm/
v201109'>
      <authToken>xxxx</authToken>
      <applicationToken>yyyy</applicationToken>
      <developerToken>zzzz</developerToken>
    </RequestHeader>
  </soap:Header>
  <soap:Body>
    <get xmlns='https://adwords.google.com/api/adwords/mcm/v201109'>
      <selector />
    </get>
  </soap:Body>
</soap:Envelope>

Gives me this response:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
 <soap:Header>
  <ResponseHeader xmlns:ns2="https://adwords.google.com/api/adwords/cm/
v201109" xmlns="https://adwords.google.com/api/adwords/mcm/v201109";>
   <ns2:requestId>0004b62c21ba5b000aecb0aa000030d0</ns2:requestId>
   <ns2:serviceName>ServicedAccountService</ns2:serviceName>
   <ns2:methodName>get</ns2:methodName>
   <ns2:operations>0</ns2:operations>
   <ns2:responseTime>17</ns2:responseTime>
   <ns2:units>0</ns2:units>
  </ResponseHeader>
 </soap:Header>
 <soap:Body>
  <soap:Fault>
   <faultcode>soap:Server</faultcode>
   <faultstring>LoasAuthenticationError.ADS_USER_NOT_FOUND @
Service[ServicedAccountService.get]</faultstring>
   <detail>
     <ApiExceptionFault xmlns="https://adwords.google.com/api/adwords/
mcm/v201109" xmlns:ns2="https://adwords.google.com/api/adwords/cm/
v201109">
       <ns2:message>LoasAuthenticationError.ADS_USER_NOT_FOUND @
Service[ServicedAccountService.get]</ns2:message>
       <ns2:ApplicationException.Type>ApiException</
ns2:ApplicationException.Type>
     </ApiExceptionFault>
   </detail>
  </soap:Fault>
 </soap:Body>
</soap:Envelope>

>From what I can see, this specific error
"LoasAuthenticationError.ADS_USER_NOT_FOUND" relates to an older
version of the API. Is there something obvious I'm missing here?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

Reply via email to