Hello Team,
I am using code to get Customers using CustomerService,
And I am seeing that there is difference in results between 2 versions of API.
For v201605
$CustomerService = $user->GetService('CustomerService', ADWORDS_VERSION);
$graph = $CustomerService->get();
This code gives me Only one customerID
For v201609
$CustomerService = $user->GetService('CustomerService', ADWORDS_VERSION);
$graph = $CustomerService->getCustomers();
This will gives me 2 customerID.
How this are the possible between 2 versions of API?
If anyone can help me to correct same would be helpful.
Thanks,