<?php
require_once("Newsman/Client.php");
// you can get your API KEY, your newsman_user_id and list_id from My account -> API
$newsman_user_id = "your-user-id";
$api_key = "your-api-key";
$list_id = "my_list_id"; // The ID of the list
$telephone = "test_number"; // the telephone
$ip = "the_ip_address"; // the ip
try {
$client = new Newsman_Client($newsman_user_id, $api_key);
$ret = $client->sms->saveUnsubscribe($list_id, $telephone, $ip);
} catch (Exception $e) {
//do something with the error, eg: log $e->getMessage()
}
return $ret;
?>