Hello,
As the question title states, I'm trying to select all ad groups with campaign names satisfying a CONTAINS_ANY relationship. I assume this is possible since the AdWords API documentation says that campaign name can be filtered on for ad groups. However, when I try I receive the following error:
GoogleAdsServerFault: [SelectorError.INVALID_PREDICATE_OPERATOR @ serviceSelector; trigger:'CampaignName']
I'm using the AdGroupService's get() method, and my selector looks like this:
['Id', 'CampaignId', 'CampaignName', 'Name', 'Status', 'Settings', 'Labels', 'AdRotationMode'],
[{'field': 'CampaignName', 'operator': 'CONTAINS_ANY', 'values': ['dmageo']}],
{'startIndex': 0, 'numberResults': '10000'}
}
Filtering by CampaignId works perfectly fine, but CampaignName (and Campaign, campaignName, ...) for whatever reason doesn't work. Any idea?
Thanks!