Hi Sai Teja,
thank you for your answer, which unfortunately didn't help me at all.
After many hours of trial and error (and I tried everything like str(), rep(), tuple(), for ... inside the .In() or in seperate variables or defs), I finally found the solution. It's called "unpacking argument-lists" in Python and "splat" in Ruby or Perl:
This is what the correct code looks like:
.Where('BaseCampaignId').In(*campaign_ids)#Pay attention to the asterisk "*" in front of the object!
.Build())
To be honest, I wonder why you couldn't call this solution. This is certainly a problem that everyone will encounter sooner or later if they want to use the AdWords-API. In my opinion, this should be prominently featured in the AWQL documentation.
Best regads
Matthias
It's hard to believe that there is no