Get Contact Details
Get Contact Details - Nabtech
This command is used to retrieve the contact information of a domain under your account.
Request Parameters
| Name | Type | Required? | Description |
|---|---|---|---|
| domain | text | Yes | Domain name |
Sample Request
endpoint = "https://my.nabtech.co/modules/addons/DomainsReseller/api/index.php";
action = "/domains/example.com/contact";
$params = [
"domain" => "example.com",
];
$headers = [
"username: [email protected]",
"token: " . base64_encode(hash_hmac("sha256", "1234567890QWERTYUIOPASDFGHJKLZXCVBNM", "[email protected]:" . gmdate("y-m-d H")))
];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "{$endpoint}{$action}");
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params));
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($curl);
curl_close($curl);
Related Articles
- Check Domain Availability
- Get EPP Code
- Get the Nameservers of a Domain
- Get Registrar Lock of a Domain
- Register Domain
Was this article helpful?
Discussion
Loading the discussion…
Sign in to join the discussion.