get https://api.adnium.com/v1/advertiser/campaign/list/os/:os
List campaign targeting operating sytems with searching
You are able to search by both names and IDs
PHP
Replace:
[OS] with the operating system's name or ID
[YOUR_API_TOKEN] with your token
<?php
$curl = curl_init('https://api.adnium.com/v1/advertiser/campaign/list/os/[OS]?token=[YOUR_API_TOKEN]');
curl_setopt($tcurl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);
?>