Domain name for API request: teo.intl.tencentcloudapi.com.
This API is used to query DNS records. Paging, sorting and filtering are supported.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: DescribeDnsRecords. |
Version | Yes | String | Common Params. The value used for this API: 2022-09-01. |
Region | No | String | Common Params. This parameter is not required. |
ZoneId | Yes | String | The site ID of the DNS record. |
Offset | No | Integer | The page offset. Default value: 0 |
Limit | No | Integer | The paginated query limit. Default value: 20. Maximum value: 1000. |
Filters.N | No | Array of AdvancedFilter | The upper limit of Filters.Values is 20. The detailed filtering conditions are as follows: A: Point the domain name to an external IPv4 address, such as 8.8.8.8; AAAA: Point the domain name to an external IPv6 address; CNAME: Point the domain name to another domain name, which then resolves to the final IP address; TXT: Identify and describe the domain name, often used for domain verification and SPF records (anti-spam); NS: If you need to delegate subdomain resolution to another DNS service provider, you need to add an NS record. Root domains cannot add NS records; CAA: Specify the CA that can issue certificates for this site; SRV: Identify a server using a specific service, commonly used in Microsoft's directory management; MX: Specify the recipient's mail server. |
SortBy | No | String | Sort criteria, with possible values: The default sorting is based on a combination of type and name attributes. |
SortOrder | No | String | List sorting order, with possible values: The default value is asc. |
Match | No | String | The match mode. Values:all : Return all records that match the specified filter.any : Return any record that matches the specified filter. |
Parameter Name | Type | Description |
---|---|---|
TotalCount | Integer | Total number of DNS records. |
DnsRecords | Array of DnsRecord | List of DNS records |
RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
Query the DNS record list for the site with ZoneId zone-2zo8myp3av8i, for the record with ID record-3277epj0rm2y, and sort the records in descending order by creation time.
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeDnsRecords
<Common request parameters>
{
"ZoneId": "zone-2zo8myp3av8i",
"Offset": 0,
"Limit": 100,
"Filters": [
{
"Fuzzy": false,
"Values": [
"record-3277epj0rm2y"
],
"Name": "id"
}
],
"SortBy": "created-on",
"SortOrder": "desc"
}
{
"Response": {
"TotalCount": 1,
"RequestId": "3c140219-cfe9-470e-b241-907877d6fb03",
"DnsRecords": [
{
"ZoneId": "zone-2zo8myp3av8i",
"RecordId": "record-3277epj0rm2y",
"Name": "test.example.com",
"Type": "A",
"Location": "Default",
"Content": "1.1.1.1",
"TTL": 300,
"Weight": -1,
"Priority": 5,
"Status": "enable",
"CreatedOn": "2024-09-18T05:03:46Z",
"ModifiedOn": "2024-09-18T05:03:46Z"
}
]
}
}
Perform a fuzzy query for DNS records with the name 'example' under the site with ZoneId zone-2zo8myp3av8i, and sort the records in ascending order by record name.
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeDnsRecords
<Common request parameters>
{
"ZoneId": "zone-2zo8myp3av8i",
"Offset": 0,
"Limit": 100,
"Filters": [
{
"Fuzzy": true,
"Values": [
"example"
],
"Name": "name"
}
],
"SortBy": "name",
"SortOrder": "asc"
}
{
"Response": {
"TotalCount": 2,
"RequestId": "3c140219-cfe9-470e-b241-907877d6fb03",
"DnsRecords": [
{
"ZoneId": "zone-2zo8myp3av8i",
"RecordId": "record-3277epj0rm2y",
"Name": "test.example.com",
"Type": "A",
"Location": "Default",
"Content": "1.1.1.1",
"TTL": 300,
"Weight": 40,
"Priority": 5,
"Status": "enable",
"CreatedOn": "2024-09-18T05:03:46Z",
"ModifiedOn": "2024-09-18T05:03:46Z"
},
{
"ZoneId": "zone-2zo8myp3av8i",
"RecordId": "record-3277epj0rm2y",
"Name": "test.example.com",
"Type": "A",
"Location": "Default",
"Content": "2.2.2.2",
"TTL": 300,
"Weight": 60,
"Priority": 5,
"Status": "enable",
"CreatedOn": "2024-09-18T05:03:46Z",
"ModifiedOn": "2024-09-18T05:03:46Z"
}
]
}
}
Query the DNS record list with the record type CNAME under the site with ZoneId zone-2zo8myp3av8i, and sort the records in ascending order by record content.
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeDnsRecords
<Common request parameters>
{
"ZoneId": "zone-2zo8myp3av8i",
"Offset": 0,
"Limit": 100,
"Filters": [
{
"Fuzzy": false,
"Values": [
"CNAME"
],
"Name": "type"
}
],
"SortBy": "content",
"SortOrder": "asc"
}
{
"Response": {
"TotalCount": 2,
"RequestId": "3c140219-cfe9-470e-b241-907877d6fb03",
"DnsRecords": [
{
"ZoneId": "zone-2zo8myp3av8i",
"RecordId": "record-3277epj0rm2y",
"Name": "test.example.com",
"Type": "CNAME",
"Location": "CN.BJ",
"Content": "test1.eo.dnse2.com",
"TTL": 300,
"Weight": -1,
"Priority": 0,
"Status": "enable",
"CreatedOn": "2024-09-18T05:03:46Z",
"ModifiedOn": "2024-09-18T05:03:46Z"
},
{
"ZoneId": "zone-2zo8myp3av8i",
"RecordId": "record-3277epj0rm2y",
"Name": "test.example.com",
"Type": "CNAME",
"Location": "CN.FJ",
"Content": "test2.eo.dnse2.com",
"TTL": 300,
"Weight": -1,
"Priority": 0,
"Status": "enable",
"CreatedOn": "2024-09-18T05:03:46Z",
"ModifiedOn": "2024-09-18T05:03:46Z"
}
]
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
There is no error code related to the API business logic. For other error codes, please see Common Error Codes.
Was this page helpful?