I'm trying to fetch the account list for a user through v201101 ServicedAccountService. The service returns one account with client ID -1, and no name, even though this account is used for AdWords.
My request: <?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/v201101" xmlns:cm="https://adwords.google.com/api/adwords/cm/v201101"> <cm:authToken>XXXXX</cm:authToken> <cm:developerToken>XXXXX</cm:developerToken> <cm:userAgent>XXXXX</cm:userAgent> </RequestHeader> </soap:Header> <soap:Body> <get xmlns="https://adwords.google.com/api/adwords/mcm/v201101"> <selector> <enablePaging>false</enablePaging> </selector> </get> </soap:Body> </soap:Envelope> And the response: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <ResponseHeader xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201101" xmlns="https://adwords.google.com/api/adwords/mcm/v201101"> <ns2:requestId>0004abb9a4a4c5a00aec294218fb5d18</ns2:requestId> <ns2:operations>0</ns2:operations> <ns2:responseTime>522</ns2:responseTime> <ns2:units>0</ns2:units> </ResponseHeader> </soap:Header> <soap:Body> <getResponse xmlns="https://adwords.google.com/api/adwords/mcm/v201101" xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201101"> <rval> <accounts> <customerId>-1</customerId> <login></login> <companyName></companyName> <canManageClients>false</canManageClients> </accounts> </rval> </getResponse> </soap:Body> </soap:Envelope> -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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