API Services

With the API, you can engage in domain name registration and account management! Our API supports domain search, registration, renewal, dropcatch, and the use of your own software and servers, among other functions. You can easily configure domain name servers, select renewals, and create folders for your domains.

Delete Domain Resolution

Delete domain resolution record

Request URL
/api/resolution/delete
Request Parameter
Field Parameter Type Required Description
domain ym String Yes domain resolution
resolution ID jxid Integer Yes resolution record id
Request Demo
{
	"url": "http://api.gname.net/api/resolution/delete",
	"do": "POST",
	"data": {
		"appid": "testappid",
		"gntime": 1618999438,
		"jxid": "123",
		"ym": "gname.com",
		"gntoken": "6A83A48722BF8D069704E41884AC5E06"
	}
}
Response Data
Field Parameter Type Description
return code code Integer 1:return successfully-1:return failed
return description msg String description of the return request operation
return data data Object return the requested operation result data
Response Demo
{
    "code": 1,
    "msg": "delete domain resolution successfully",
    "data": ""
}