/dns/list_domains


GET https://api.sitehost.nz/1.0/dns/list_domains.json

Lists all domains for a client.

Query Parameters

ParameterTypeRequiredDescription
client_idintegerYesThe ID for the client that the domains belong to.Example: 1
offset[offset]integerThe offset of the page.Example: 10
offset[limit]integerThe number of items to return per page.Example: 10

Code Samples

JavaScript PHP Rails Python
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.0/dns/list_domains.json?apikey=your_key_here&client_id=1&offset[offset]=10&offset[limit]=10", false);

xmlHttp.send();

var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.0/dns/list_domains.json?apikey=your_key_here&client_id=1&offset[offset]=10&offset[limit]=10");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'

uri = URI.parse("https://api.sitehost.nz/1.0/dns/list_domains.json?apikey=your_key_here&client_id=1&offset[offset]=10&offset[limit]=10")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)

response = http.request(request)
import requests

uri = 'https://api.sitehost.nz/1.0/dns/list_domains.json?apikey=your_key_here&client_id=1&offset[offset]=10&offset[limit]=10'

response = requests.get(uri)

Response

200:

application/json
{
  "return": [
    {
      "name": "example.com",
      "client_id": "1",
      "template_id": "0"
    },
    {
      "name": "example1.com",
      "client_id": "1",
      "template_id": "0"
    },
    {
      "name": "example2.com",
      "client_id": "1",
      "template_id": "0"
    }
  ],
  "msg": "Successful.",
  "status": true,
  "time": 10.91
}