Hi all,
I am trying to retrieve all accounts with label "BLA" that are linked to my MCC .
I have managed to do so by creating the following selector :
SelectorBuilder selectorBuilder =
new SelectorBuilder()
.fields(ManagedCustomerField.CustomerId
,ManagedCustomerField.AccountLabels
,ManagedCustomerField.Name)
.offset(offsetMC)
.limit(PAGE_SIZE);
And then iterating through the output and checking if AccountLabels contained "BLA".
Is there a better way to specify that in the selector from the get-go ? I could not figure it out.
Thanks for your help !