Loading
Cart Total
$0.00
-
Your shopping cart is empty
Loading
Hello! Log in Your Account
New customer? Start here
Domain Management
Domain Management
Domain Contacts
Name Server Groups
DNZ Zones and Records
Email and Web Forwarding
SSL Certificates
Domain hosts describe nameservers available on the specified domain name.
Become a ResellerFilter:
* You will be charged every time this command is run.
Gets all domain hosts
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : [
{
"created_on" : "2023-06-02",
"domain_uuid" : "a7ba3588-dbe0-4972-bfac-3da598607583",
"host_name" : "ns1",
"ip_addresses" : [
"8.8.8.8",
"8.8.4.4"
],
"updated_on" : "2023-06-02",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
}
],
"status_code" : 200,
"status_message" : "OK"
}
Gets a specific domain hosts
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the domain host to be queried
200 Response
{
"result" : {
"created_on" : "2023-06-02",
"domain_uuid" : "a7ba3588-dbe0-4972-bfac-3da598607583",
"host_name" : "ns1",
"ip_addresses" : [
"8.8.8.8",
"8.8.4.4"
],
"updated_on" : "2023-06-02",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Creates a new host
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
POST body
Name
Type
Required
domain_uuid
String
True
The UUID of the domain this host name is applied to
host_name
String
True
The name of this domains host name
ip_addresses
Array of String
True
A list of IP addresses to apply to this host name
JSON all-fields example:
{
"domain_uuid" : "a7ba3588-dbe0-4972-bfac-3da598607583",
"host_name" : "ns1",
"ip_addresses" : [
"8.8.8.8",
"8.8.4.4"
]
}
201 Response
{
"result" : {
"created_on" : "2023-06-02",
"domain_uuid" : "a7ba3588-dbe0-4972-bfac-3da598607583",
"host_name" : "ns1",
"ip_addresses" : [
"8.8.8.8",
"8.8.4.4"
],
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 201,
"status_message" : "Created"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Updates the specified host
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the domain host to be updated
PUT body
Name
Type
Required
domain_uuid
String
True
The UUID of the domain this host name is applied to
host_name
String
True
The name of this domains host name
ip_addresses
Array of String
True
A list of IP addresses to apply to this host name
JSON all-fields example:
{
"domain_uuid" : "a7ba3588-dbe0-4972-bfac-3da598607583",
"host_name" : "ns1",
"ip_addresses" : [
"8.8.8.8",
"8.8.4.4"
]
}
200 Response
{
"result" : {
"created_on" : "2023-06-02",
"domain_uuid" : "a7ba3588-dbe0-4972-bfac-3da598607583",
"host_name" : "ns1",
"ip_addresses" : [
"8.8.8.8",
"8.8.4.4"
],
"updated_on" : "2023-06-02",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Deletes the specified host
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the domain host to be deleted
204 Response
{
"result" : {},
"status_code" : 204,
"status_message" : "No Content"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}