Hi,
I have issue when pull information about account info. The account is single account and not MCC.
I use ManagedCustomerService to do that, for several accounts I get empty respon from API. I can't get account information about those accounts
There isn't error message from API, I just get this response :
{:total_num_entries=>0, :page_type=>"ManagedCustomerPage"}
I use Ruby :
API version : v201607
Gem version :
1. google-adwords-api (0.21.0)
2. google-ads-common (~> 0.12.3)
This is my code:
#############################
api = Adwords::ApiService.client(token, customer_id)
managed_customer_srv = api.service( :ManagedCustomerService, Adwords::ApiService.version)
selector = {:fields => ['CustomerId', 'CompanyName', 'Name', 'CanManageClients', 'CurrencyCode', 'DateTimeZone', 'TestAccount']}
result = managed_customer_srv.get(selector)
#############################