buy
Delete DNS record

Delete DNS record

Use the following API to Delete DNS record.

Parameter

Sample Code

Please refer following sample code for CURL and API.

NOTE : For deleting a DNS record for any domain you first need to have index of DNS record , that you can find using the provided API . Where you will get the DNS list of domain. Click here to get the dns_record_index using API. In below screenshot the highlighted index are the index of DNS record that you need to pass in delete.

dns

NOTE : You need to add the index of DNS record for which you want to edit the DNS record in "delete" record. For instance you want to delete the dns record of A record then you will find the index from the above API and you can pass the index in dns_record_index like 1.

curl --insecure -d "delete=DNS_RECORD_INDEX" -d "domain=DOMAIN" -u "root:PASSWORD" -X POST "https://SERVER_IP or HOSTNAME:2005/index.php?api=json&act=advancedns"
<?php
$user = 'root';
$pass = 'PASSWORD';
 
$host = 'SERVER_IP or ADDRESS'; 

$url = 'https://'.rawurlencode($user).':'.rawurlencode($pass).'@'.$host.':2005/index.php?api=json&act=advancedns';

$post = array('delete' => 'DNS_INDEX_RECORD', // If you want to delete multiple records then just pass comma seperated dns record index for example 'delete' => '11,12,13' 
			'domain'=>'DOMAIN',	
);

// Set the curl parameters 
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

if(!empty($post)){
	curl_setopt($ch, CURLOPT_POST, 1);
	curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
}
// Get response from the server. 
$resp = curl_exec($ch);
// print_r($resp);

// The response will hold a string as per the API response method. In this case its PHP Serialize
$res = json_decode($resp, true);

// // Done ?
if(!empty($res['done'])){
    print_r($res['done']['msg']);
}else{
    print_r($res['error']);
}

NOTE: If you want to delete multiple DNS record then you just need to pass the dns record index in comman separated value. For instance '13,14' . DNS record with index 13 and 14 will be deleted

Output

Record(s) deleted successfully
    Was this page helpful?
    Newsletter Subscription
    Subscribing you to the mailing list