Domain Reseller API Documentation 53 Recently updated 1 min read

Update Nameservers of a domain

Update the nameservers of a Domain

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

CALL

POST - /domains/{domain}/nameservers

Request Parameters

Name Type Required? Description
domain text Yes Domain name

nameservers

[

text, #nameserver1
text, #nameserver2
text, #nameserver3
text, #nameserver4
text, #nameserver5

]

array Yes nameserver1 and nameserver2 are required. nameserver3, nameserver4, nameserver5 are optional

Sample Request

endpoint ="https://my.nabtech.co/modules/addons/DomainsReseller/api/index.php";
$action = "/domains/example.com/nameservers";
$params [
    "domain"    => "example.com",
     "nameservers" => [
          "ns5.nabtechonlineng.net",
          "ns6.nabtechonlineng.net",
  ],

];

$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);

Discussion

Loading the discussion…