Get Nameservers

domaingetnameservers

Purpose

This command is used to obtain the nameservers of a domain

Attributes

  • domainid - Domain ID OR
  • domain - The domain name
send domain id *or* domain

Example Command

$postfields = array();
$postfields["responsetype"] = "json";

$postfields["action"] = "domaingetnameservers";
$postfields["domainid"] = "1";

$result = mikrovps_SendCommand( $postfields );

Successful Response

Array
(
    [result] => success
    [ns1] => ns0.mikrovps.hu
    [ns2] => ns1.mikrovps.hu
    [ns3] =>
    [ns4] =>
    [ns5] =>
    [error] =>
)

Error Response

result=error
message=Domain ID Not Found

Domain ID not found in the database

result=error
message=Registrar Error Message
error=xxx

Error values from registrar

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

Domain WHOIS

domainwhois Purpose This command is used to perform a whois lookup on a specified domain....

Update Domain Nameservers

domainupdatenameservers Purpose This command is used to update the nameservers of a domain...

Release Domain

domainrelease Purpose This command is used to send a Release command to the registrar...

Toggle ID Protect

domaintoggleidprotect Purpose This command is used to toggle the ID Protection status of a...

Get Domain WHOIS

domaingetwhoisinfo Purpose This command is used to obtain the WHOIS of a domain from the...