Hi,
I'm trying to create a 'Search network with Display Select'-campaign via the v201409 API. I'm using the official 'googleads' Python client library (Version 3.0.1).
Creating search-campaigns without displaySelect works fine but when I pass 'displaySelect': 'true' (with the correct networkSettings as described in
http://googleadsdeveloper.blogspot.nl/2014/03/changes-required-for-creating-new.html) I get an error from lxml: TypeNotFound: Type not found: 'displaySelect'.
In my experience this usually means that I'm passing the parameter in the wrong place, here is my operand:
operand = {
'name': name,
'status': status,
'advertisingChannelType': campaign_type,
'biddingStrategyConfiguration': {
'biddingStrategyType': 'MANUAL_CPC',
},
'budget': {
'budgetId': budget_id
},
'networkSetting': {
'targetGoogleSearch': 'true',
'targetSearchNetwork': 'false',
'targetContentNetwork': 'true',
'targetPartnerSearchNetwork': 'false',
},
'displaySelect': 'true'
}
Does anyone see where it goes wrong?