ru en de fr pt es it zh ar nl sv
API интерфейсСпециально для наших партнеров разработан API интерфейс
set_type_cancel

Добавление запроса на отмену сервиса(прокси)

Параметры запроса
Parameter Type Description Required
action string set_type_cancel Обязательный
hash string Ваш хеш для работы с API Обязательный
userid int Ваш номер клиента Обязательный
serviceid int ID сервиса Обязательный
typecancel string "Immediate" - немедленное удаление услуги ИЛИ "End of Billing Period" - услуга удалится по окончанию расчетного периода. По умолчанию "End of Billing Period" Необязательный
Example Request (CURL)
$postfields = array(
				"userid"=>$userid,
				"hash"=>$hash,
				"action"=>"set_type_cancel",
				"serviceid"=>1,
				"typecancel"=>"Immediate"
				);
$result = connect_client_api_o2proxycom($postfields);

function connect_client_api_o2proxycom($postfields){
	 $url = "https://my.virty.io/includes/client_api/index.php";
	 $ch = curl_init();
	 curl_setopt($ch, CURLOPT_URL, $url);
	 curl_setopt($ch, CURLOPT_POST, 1);
	 curl_setopt($ch, CURLOPT_TIMEOUT, 1000);
     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
	 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	 curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
	 $data = curl_exec($ch);
	 curl_close($ch);
	 return $data;
}