I want to get all the accounts within an MCC which contains 755 accounts, but 635 of those are hidden. In the
API references I found out that I can filter out all the hidden accounts by setting the field ExcludeHiddenAccounts = true in the ManagedCustomerService.get method (I read about it
here). However, when I set it in the list of predicates the API is ignoring it and return all the accounts in the MCC. This snippet contains the selector I'm using:
selector = {
'fields': ['CustomerId', 'Name'],
'paging': {
'startIndex': str(offset),
'numberResults': str(self.page_size)
},
'predicates': [{
'field' : 'ExcludeHiddenAccounts',
'operator' : 'EQUALS' ,
'values' : 'true'
}]
}
Am I missing something?