put https://api.adnium.com/v1/advertiser/campaign/:id/edit/languages/
Edit campaign laguage targeting
PHP
Replace:
[LANGUAGES] with your comma delimited languages - List languages
[CAMPAIGN] with your campaign ID
[YOUR_API_TOKEN] with your token
<?php
$params = array(
'value'=>[LANGUAGES]
);
$curl = curl_init('https://api.adnium.com/v1/advertiser/campaign/[CAMPAIGN]/edit/languages/?token=[YOUR_API_TOKEN]');
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($this->curl, CURLOPT_POSTFIELDS, http_build_query($params));
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);
?>