ModifyDnsRecords
1. API Description
Domain name for API request: teo.intl.tencentcloudapi.com.
You can use this interface to batch modify DNS records.
A maximum of 20 requests can be initiated per second for this API.
2. Input Parameters
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: ModifyDnsRecords. |
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 | Site ID. |
DnsRecords.N | No | Array of DnsRecord | List of DNS record modification data, with a maximum of 100 modifications at a time. |
3. Output Parameters
Parameter Name | Type | Description |
---|---|---|
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. |
4. Example
Example1 Batch modify DNS records for specified record IDs.
Under the site with ZoneId zone-225qgrnvbi9w, change the record name of the DNS record with record ID record-3d5dg39c to eo-test1.com, change the record type to CNAME, and change the record content to eo-test1.c4games.com.eo.dnse2.com; change the record name of the DNS record with record ID record-gkd9gyrv to eo-test2.com, change the record type to A, and change the record content to 1.2.3.4.
Input Example
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: ModifyDnsRecords
<Common request parameters>
{
"DnsRecords": [
{
"RecordId": "record-3d5dg39c",
"Name": "eo-test1.com",
"Type": "CNAME",
"Content": "eo-test1.c4games.com.eo.dnse2.com"
},
{
"RecordId": "record-gkd9gyrv",
"Name": "eo-test2.com",
"Type": "A",
"Content": "1.2.3.4"
}
],
"ZoneId": "zone-20hzkd4rdmy0"
}
Output Example
{
"Response": {
"RequestId": "d08bed0d-15bf-4d65-ab56-906aee0c845"
}
}
Example2 Batch modify the record weight of DNS records for specified record IDs.
Under the site with ZoneId zone-225qgrnvbi9w, change the record weight of the DNS record with record ID record-3d5dg39c to 40; change the record weight of the DNS record with record ID record-gkd9gyrv to 60.
Input Example
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: ModifyDnsRecords
<Common request parameters>
{
"DnsRecords": [
{
"RecordId": "record-3d5dg39c",
"Weight": 40
},
{
"RecordId": "record-gkd9gyrv",
"Weight": 60
}
],
"ZoneId": "zone-20hzkd4rdmy0"
}
Output Example
{
"Response": {
"RequestId": "d08bed0d-15bf-4d65-ab56-906aee0c845"
}
}
Example3 Batch modify the resolution line and record content of DNS records for specified record IDs.
Under the site with ZoneId zone-225qgrnvbi9w, change the resolution line of the DNS record with record ID record-3d5dg39c to Beijing (CN.BJ), and change the record content to eo-test1.c4games.com.eo.dnse2.com; change the resolution line of the DNS record with record ID record-gkd9gyrv to Fujian (CN.FJ), and change the record content to eo-test2.c4games.com.eo.dnse2.com.
Input Example
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: ModifyDnsRecords
<Common request parameters>
{
"DnsRecords": [
{
"RecordId": "record-3d5dg39c",
"Location": "CN.BJ",
"Content": "eo-test1.c4games.com.eo.dnse2.com"
},
{
"RecordId": "record-gkd9gyrv",
"Location": "CN.FJ",
"Content": "eo-test2.c4games.com.eo.dnse2.com"
}
],
"ZoneId": "zone-20hzkd4rdmy0"
}
Output Example
{
"Response": {
"RequestId": "d08bed0d-15bf-4d65-ab56-906aee0c845"
}
}
5. Developer Resources
SDK
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
- Tencent Cloud SDK 3.0 for Python
- Tencent Cloud SDK 3.0 for Java
- Tencent Cloud SDK 3.0 for PHP
- Tencent Cloud SDK 3.0 for Go
- Tencent Cloud SDK 3.0 for Node.js
- Tencent Cloud SDK 3.0 for .NET
- Tencent Cloud SDK 3.0 for C++
Command Line Interface
6. Error Code
There is no error code related to the API business logic. For other error codes, please see Common Error Codes.
- 1. API Description
- 2. Input Parameters
- 3. Output Parameters
- 4. Example
- Example1 Batch modify DNS records for specified record IDs.
- Example2 Batch modify the record weight of DNS records for specified record IDs.
- Example3 Batch modify the resolution line and record content of DNS records for specified record IDs.
- 5. Developer Resources
- SDK
- Command Line Interface
- 6. Error Code