I've got CustomerClient during 1 month. But today, i coudn't get CustomerClient because it returned empty. I really don't know why, my code didn't change!
Please help me, thank you in advance
Here my code:
query = ('SELECT '
'customer.currency_code, '
'customer.resource_name, '
'customer_client.id '
'FROM '
'customer_client')
results = ga_service.search(manager_id, query=query, page_size=page_size)
list = []
try:
for row in results:
list.append(row.customer_client.id.value)
except Exception as ex:
cfg.log_file(constant.LOG_TYPE_ERROR, constant.LOG_GOOGLE_ADS, str(ex))
print(ex)
return list