Selecting ad groups by campaign name with CONTAINS_ANY predicate type (Python googleads API)

2018-09-25 Thread Preston Hinkle
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

API (Python) fetches keyword duplicates?

2018-09-27 Thread Preston Hinkle
Hello, When I use the AdWords API to fetch biddable ad group criterion, say by ad group ID, the returned results always include 2 duplicates of each criterion. This does not happen when fetching any other entity. The returns fields are exactly identical. So for instance, if I have 10 criterion

Re: Selecting ad groups by campaign name with CONTAINS_ANY predicate type (Python googleads API)

2018-09-27 Thread Preston Hinkle
ny further clarifications. > > Thanks and regards, > Luis > AdWords API Team > > On Wednesday, September 26, 2018 at 1:31:13 PM UTC+8, Preston Hinkle wrote: >> >> Hello, >> >> As the question title states, I'm trying to select all ad groups with >>

Wildcards in CONTAINS predicate?

2018-10-05 Thread Preston Hinkle
Hello, I was wondering if in AdWords it is possible to search for AdGroup names using a wildcard in a CONTAINS predicate; for instance, something like 'predicates': [ { 'field': 'Name', 'operator': 'CONTAINS', 'values': 'adgroup*' } ], where the wildcard asterisk ab