更新时间:2022-01-25 GMT+08:00

查询公网Zone的名称服务器

功能介绍

查询单个公网Zone的名称服务器。

URI

GET /v2/zones/{zone_id}/nameservers

参数说明请参见表1
表1 URI格式的参数说明

名称

是否必选

参数类型

说明

zone_id

String

待查询zone的ID。

可以通过查询公网Zone列表获取。

请求

  • 请求参数

  • 请求样例

    查询域名Zone ID为“2c9eb155587194ec01587224c9f90149”的名称服务器列表。

    GET https://{DNS_Endpoint}/v2/zones/2c9eb155587194ec01587224c9f90149/nameservers

响应

  • 要素说明
    表2 响应样例的要素说明

    名称

    参数类型

    说明

    nameservers

    Array of object

    name server列表对象,详细内容请参见表3

    表3 nameservers参数说明

    名称

    参数类型

    说明

    hostname

    String

    主机名。

    priority

    Integer

    优先级。

    示例:

    如果priority的值为“1”,表示会第一个采用该域名服务器进行解析。

  • 响应样例
    {
        "nameservers": [
            {
                "hostname": "ns1.example.com.", 
                "priority": 1 
            }, 
            {
                "hostname": "ns2.example.com.", 
                "priority": 2
            }
        ]
    }
    

返回值

接口正常的返回值为2xx,例如200、202或者204。

返回值含义以及更多返回值请参考状态码