Deskripsi
Menghapus host. Host hanya bisa dihapus jika tidak berelasi dengan domain lain.
Query
host/delchild
List Variabel
| Nama | Tipe Data | Required/Optional | Deksripsi |
|---|---|---|---|
| domain | String(63) | Required | Nama domain dari childns |
| nameserver | String(63) | Required | Nama host yang akan dihapus |
Contoh
$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.co.id'
$post["nameserver"] = 'ns1.domainid.co.id'
$url = 'http://[reseller url]/api/host/delchild';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiurl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
$response = curl_exec($ch);
curl_close($ch);
Respon Contoh
Berhasil
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><epp><result><resultCode>1000</resultCode><resultMsg>Command completed successfully</resultMsg></result></epp>
Gagal
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><epp><result><resultCode>2303</resultCode><resultMsg>Object does not exist</resultMsg></result></epp>