Hi,
As i know from the answer of
Josh, AdWords API Team that we can get the client name using the name fields on
CustomerService.Customer, or the name fields on
ManagedCustomerService.ManagedCustomer.
CustomerService will give you information on the customer ID in the
header, while ManagedCustomerService will give you information on all of
the customers under an MCC.
To issue requests against specific client/customer IDs,we simply set the client customer ID dynamically as described in the
auth.ini like this
$user = new AdWordsUser();
$user->SetClientCustomerId('564-667-675');
But i need to know all the details of my clients under my MCC accounts. For Ex. i have
15 clients under my MCC account. i want to get details like this with one request
client name,
client id,
client creation dateclient name client id create date
XXX 564-667-675 2014-04-05
YYY 564-999-675 2013-04-05KKK 657-667-675 2014-09-05
VVV 564-009-675 2015-04-05
..... .................... ................
..... ..................... ................
MDV 564-089-675 2005-04-05So, my questions are
How to get
ALL client details(client name, client id, client creation date) under my MCC account ?
May i need to pass
any specific client id/
Root client id of MCC account in this case on
auth.in ?Thanks,
Sany