Update Contact Domain

Versi Bahasa Indonesia

Description

Update contact information of a domain.

Query

domain/editcontact

List Variabel

Name Data Type Required/Optional Description
domain String(63) Required Domain name
registrant_nickhandle String(63) Optional Nickhandle contact domain whom to be updated
admin_nickhandle String(63) Optional Nickhandle contact domain whom to be updated
billing_nickhandle String(63) Optional Nickhandle contact domain whom to be updated
tech_nickhandle String(63) Optional Nickhandle contact domain whom to be updated
registrant_contact String(63) Optional Id contact domain whom to be updated
admin_contact String(63) Optional Id contact domain whom to be updated
billing_contact String(63) Optional Id contact domain whom to be updated
tech_contact String(63) Optional Id contact domain whom to be updated

Catatan: minimal untuk melakukan update contact salah satu id contact disi

Example

$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.co.id';

$post["registrant_nickhandle"] = '143reds';
$post["admin_nickhandle"]= '143reds';
$post["billing_nickhandle"]= '143reds';
$post["tech_nickhandle"]= '143reds';

$url = 'http://[reseller url]/api/domain/editcontact';
$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);

Example Response

Succeed:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<epp>
<result>
<resultCode>1000</resultCode>
<resultMsg>Command completed successfully</resultMsg>
</result>
</epp>

Failed:

<?xml version="1.0" encoding="UTF-8"?>
<epp>
<result>
<resultCode>1001</resultCode>
<resultMsg>Respon Failed</resultMsg>
</result>
</epp>