API: change_service_pass

change_service_pass

Discription:
Update your password on the proxy service
This request to change the password on the specified service, and will also be replaced with a hash in the URL to get the IP list. The password will be generated randomly and will be issued in the response in the "new_pass" field

Parameter Type Description Required
action string change_service_pass required
hash string Your API hash required
userid int Your customer ID required
serviceid int Service ID required
Example Request (CURL)
$postfields = array(
		"userid"=>$userid,
		"hash"=>$hash,
		"action"=>"change_service_pass",
		"serviceid"=>111
		);
$result = connect_api_proxy007com($postfields);

function connect_api_proxy007com($postfields)
{
	$url = "https://proxy007.com/proxy/api/index.php";
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, $url);
	curl_setopt($ch, CURLOPT_POST, 1);
	curl_setopt($ch, CURLOPT_TIMEOUT, 900);
	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;
}

					
Answer:

{"code":"2001","status":"successful","login":"LOGIN","new_pass":"PASS","serviceid":"111"}