ModifyDnsRecords
1. API Description
Domain name for API request: teo.intl.tencentcloudapi.com.
This API is used to bulk 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 | Zone id. |
DnsRecords.N | No | Array of DnsRecord | DNS record modification data list, up to 100 entries can be modified 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 With Specified Record IDs
At the site with ZoneId zone-225qgrnvbi9w, change the record name of the DNS record with record ID record-3d5dg39c to eo-test1.com, the record type to CNAME, and 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, the record type to A, and 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 With Specified Record IDs
At 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 Route and Record Content Of DNS Records With Specified Record IDs
At the site with ZoneId zone-225qgrnvbi9w, change the resolution route of the DNS record with record ID record-3d5dg39c to Beijing (CN.BJ) and the record content to eo-test1.c4games.com.eo.dnse2.com; change the resolution route of the DNS record with record ID record-gkd9gyrv to Fujian (CN.FJ) and 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.