Hi,
I read
* Ads canonly be negatively geotargeted if a positive geotargeting is also supplied, and
* the negatively geotargeted region must be contained within the positive
* region.
I understood I should use :
$geoTargetTypeSetting->positiveGeoTargetType = 'LOCATION_OF_PRESENCE'; //which should be USA
$geoTargetTypeSetting->negativeGeoTargetType = 'LOCATION_OF_PRESENCE'; // which should be a list of locations
Here is my code so far,
$geoTargetTypeSetting = new GeoTargetTypeSetting();
$geoTargetTypeSetting->positiveGeoTargetType = 'LOCATION_OF_PRESENCE';
$geoTargetTypeSetting->negativeGeoTargetType = 'LOCATION_OF_PRESENCE';
$geoTargetTypeSetting->SettingType = ???
$campaign->settings[] = $geoTargetTypeSetting;
How should I specify the Criteria IDs? Maybe SettingType?
What is the Criteria ID for USA as a country?
Thanks,