Hello,
I am using the google-ads-python package, and when querying the CustomerClient resource, I am not receiving all the fields I queried for.
Query:
SELECT customer_client.client_customer, customer_client.descriptive_name,
customer_client.id, customer_client.hidden, customer_client.manager, customer_client.test_account, customer_client.timezone
FROM customer_client
WHERE customer_client.hidden != TRUE AND customer_client.test_account != TRUE AND customer_client.manager != TRUE
Consistently for every single client customer (~1200 accounts), I am only receiving the client_customer, hidden, level, and resource_name fields.
Is this a known issue that the CustomerClient resource does not return these fields?
Also, when will a feature for querying for only ACTIVE accounts be available? It seems like a total waste of quota usage to have to try querying for each individual account using the CustomerService GetCustomer method and seeing if the request fails due to a CUSTOMER_NOT_ENABLED or similar error.