/mail/list_domains


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

Returns a list of domains on the specified server.

Query Parameters

ParameterTypeRequiredDescription
client_idintegerYesThe ID for the client that the server belongs to.Example: 1
server_namestringYesThe name of the server to list domains for.Example: my-mail-server

Code Samples

JavaScript PHP Rails Python
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.0/mail/list_domains.json?apikey=your_key_here&client_id=1&server_name=my-mail-server", false);

xmlHttp.send();

var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.0/mail/list_domains.json?apikey=your_key_here&client_id=1&server_name=my-mail-server");
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/mail/list_domains.json?apikey=your_key_here&client_id=1&server_name=my-mail-server")
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/mail/list_domains.json?apikey=your_key_here&client_id=1&server_name=my-mail-server'

response = requests.get(uri)

Response

200:

application/json
{
  "return": [
    {
      "client_id": "1",
      "domain": "example.com",
      "parent_domain": null,
      "catch_all": "",
      "state": "1",
      "accounts": 3,
      "nicknames": 2,
      "forwarders": 0,
      "total_used": 0
    }
  ],
  "msg": "Successful.",
  "status": true,
  "time": 14.32
}