Hi guys,
I have created a campaign with no GeoTargetTypeSetting specified, and then perform the following operation to set a GeoTargetTypeSetting:
Python:
---
operations = [{
'operator': 'SET',
'operand': {
'id': campaign_id,
'settings': [
{
'xsi_type': 'GeoTargetTypeSetting',
'positiveGeoTargetType': 'LOCATION_OF_PRESENCE',
'negativeGeoTargetType': 'AREA_OF_INTEREST'
}
]
}
}]
campaign_service.mutate(operations)
---
The above code set the setting that I wanted, but if I perform the operation once again the setting is never changed, I mean if I set "LOCATION_OF_PRESENCE" for both (negative and positive) it keeps as the first time I perform the SET operation. No errors, the operation executes well, just no changes.
How can I SET (update/overwrite) the current GeoTargetTypeSetting for a given campaign?
Thank you.