Hello, Team.
I have developer_token with Basic Access level and 2 managers. One of them is test and have 3 test client accounts, another not test and have 2 not test client accounts. I have tried and developed my app with test accounts and descriptive_name is important for me (I used get_account_hierarchy as an example).
Here GAQL query:
query = """
SELECT
customer_client.client_customer,
customer_client.level,
customer_client.manager,
customer_client.descriptive_name,
customer_client.currency_code,
customer_client.time_zone,
customer_client.id FROM customer_client
WHERE customer_client.level <= 1"""
I parse results and show all attributes by calling _pb attribute for every client_customer
Here results for test manager and not test, can you please explain, why test accounts have such field unlike production ones.
1) Test accounts hierarchy
2) Production account hierarchy
Thanks in advance!