/dns/domain_templates/list_templates
GET https://api.sitehost.nz/1.0/dns/domain_templates/list_templates.json
Lists all templates for a client.
Query Parameters
Parameter | Type | Required | Description |
client_id | integer | Yes | The ID for the client.Example: 1 |
Code Samples
JavaScript PHP Rails Pythonvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.0/dns/domain_templates/list_templates.json?apikey=your_key_here&client_id=1", false);
xmlHttp.send();
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.0/dns/domain_templates/list_templates.json?apikey=your_key_here&client_id=1");
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/domain_templates/list_templates.json?apikey=your_key_here&client_id=1")
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/domain_templates/list_templates.json?apikey=your_key_here&client_id=1'
response = requests.get(uri)
Response
200:application/json
{
"return": [
{
"client_id": "1",
"template_id": "129",
"template_name": "Example Zone",
"domain_count": "0"
},
{
"client_id": "1",
"template_id": "167",
"template_name": "New Example Template",
"domain_count": "0"
}
],
"msg": "Successful.",
"status": true,
"time": 26.62
}
"return": [
{
"client_id": "1",
"template_id": "129",
"template_name": "Example Zone",
"domain_count": "0"
},
{
"client_id": "1",
"template_id": "167",
"template_name": "New Example Template",
"domain_count": "0"
}
],
"msg": "Successful.",
"status": true,
"time": 26.62
}