Resello REST API Documentation

GET domain/[domain_name]/name-server

Returns a list of name servers for the given domain name.

Resource URL

https://backoffice.hostcontrol.com/api/v1/domain/[domain_name]/name-server

Parameters

None

Example request


GET    https://backoffice.hostcontrol.com/api/v1/domain/example.com/name-server

Result

{
   "result": [
      {
         "hostname": "ns-test.hostcontrol.com"
      },
      {
         "hostname": "ns2-test.hostcontrol.com"
      },
      {
         "hostname": "ns1.backupns.nl"
      }
   ],
   "success": true
}