put https://api.adnium.com/v1/advertiser/stats/:campaign/zones/:zone/exclude/
Exclude a zone from a campaign
PHP
Replace:
[CAMPAIGN] with your campaign ID
[ZONE] with the zone ID you wish to exclude
[YOUR_API_TOKEN] with your token
<?php
$curl = curl_init('https://api.adnium.com/v1/advertiser/stats/[CAMPAIGN]/zones/[ZONE]/exclude/?token=[YOUR_API_TOKEN]');
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'PUT');
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);
?>