Evgeniy,
Thank you very much for your guidance!  You were right; the general
method you mentioned worked.  Here's what I did differently to obtain
the CUSTOMER_ID for each sandbox client account.

First, I uploaded Apility, editing the authentication and settings INI
files to utilize the sandbox environment. Secondly, I created a small
file to display the information I needed.  Instead of using a report
to get the data I needed, it was actually quicker to use the
getAccountInfo() method.

Here's is a sample of the code, in PHP, I used:

require_once('apility.php');

$apilityUser = new APIlityUser();
$apilityUser->setClientEmail("client_x+em...@isp.com");

echo "<pre>";
print_r($apilityUser->getAccountInfo());
echo "</pre>";

This code would print out account information for the selected client
account.  Substituting 1-5 for "X" in the client email, I was able to
obtain data for each sandbox account.

Finally, the 10-digit "customerId" element listed in the obtained data
is the correct value to use as the "CUSTOMER_ID" scoping entity in
latter versions' BMJS.  I have successfully run tests that failed
yesterday, and I have verified the BMJS results by using the Sandbox
Account Viewer.

Once again, your help is greatly appreciated.  Although this method of
getting sandbox account customer ID's is not perfect, it's not really
as bad as I thought.  Hopefully, someone else will benefit from the
information above.

Many thanks!

On Apr 9, 1:38 am, Evgeniy Bogdanov <bogda...@tagan.ru> wrote:
> Ok. I see.
>
> Other suggestion is not simple. :)
> Download v13 libraryhttp://code.google.com/p/google-api-adwords-apility/
> (for PHP)
> and with this 
> documentationhttp://code.google.com/intl/en-EN/apis/adwords/docs/developer/ReportS...
>
> create and execute report which have CustomerID via SandBox.
>
> Regards,

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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

Reply via email to