Hello!
I am trying to retrieve accounts based on their labels.
managed_customer_service = client.GetService('ManagedCustomerService', version='v201809')
selector = {
'fields' : [ 'CustomerId' , 'Name' ] ,
'predicates' : [ { 'field' : 'AccountLabels' , 'operator' : 'CONTAINS_ANY' , 'values' : [ 'Labe1' , 'Label2' ] } ]
}
page = managed_customer_service.get(selector)
What is wrong, why would I recieve such an error.
GoogleAdsServerFault('[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ com.google.ads.api.services.common.error.InternalApiError.<init>(InternalApiErro]',)