API documentation
Create Child Nameserver
Register a new DNS server for use with a specific domain
Content-Type
application-json
category
nameserverhost
action
add
Request parameters
| Parameter Name | Type | Describe | Example |
|---|---|---|---|
| domain | String | Domain name | example.com |
| dns | String (3-30) | DNS server name (must match domain) | ns1.example.com |
| ip | String | DNS server IP address | 192.168.1.1 |
Response parameters
| Parameter Name | Type | Describe |
|---|---|---|
| dns | String | DNS server name |
| ip | String | DNS server IP address |
Request Example
{
curl https://api.nicenic.net/v2/?category=nameserverhost&action=add&domain={domain}&dns={dns}&ip={ip}
-H "Authorization: username:api_secret"
-H "Content-Type: application/json"
}
Return result
0 OK
Successful response
{
"code": 0,
"msg" : "success",
"data" : {
{
"dns": "ns1.example.com",
"ip": "192.168.1.1"
}
}
}
400 Bad Request
{
"code": 400,
"msg" : "Request parameter error",
}






