Hi, I need to provide a list of all accessible adAccounts of the user in order to let him choose a target account to create the ad campaign for.
Currently I've managed to create a list with all accessible accounts. But I need to filter this in order to only provide viable accounts for ad campaign creation. How can I achieve this? currentCode: ``` $accounts = []; foreach ($accessibleCustomers->getResourceNames() as $resourceName) { $customer = $customerServiceClient->getCustomer($resourceName); //hide test accounts in prod environment //hide non-test accounts in non-prod environment if ($customer->hasTestAccount() === $this->environmentUtils->isProdEnvironment()) { continue; } $accounts[$customer->getId()] = $customer->getDescriptiveName().' ('.$customer->getId().')'; } asort($accounts); ``` -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads 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 --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/63bf9dfc-3611-4903-b7cb-47645228a01bn%40googlegroups.com.