Hello,
I'm a developer in a Startup Company, and we are interacting with the Google Ads API to Controll Google Ads with a Python Application.
We are now searching for a solution, to include and exclude Product Partions in Adgroups.
The following Sample Code shows the Operand:
operations = [{
'operator': 'SET',
'operand': {
'adGroupId': ADGROUP_ID,
'criterion': {
'id': CRITERION_ID
},
'AdGroupCriterion.Type': 'NegativeAdGroupCriterion',
'criterionUse': 'NEGATIVE'
}
}]
adgroup_criterion_service.mutate(operations)
Am I still right, that you cant include/exclude Product Partitions over the Ads API, because the Field is Read Only?
We could also remove the Product Partition and create a knew one, but in this case we lose track of data.
Maybe somebody can supply me with some Informations, or another idea to archive including/excluding Product Partions without the use of the Ads Frontend.
Thanks in advance,
Marco.