Bulk Add Domain Resolution
Bulk Add Domain Resolution#
Can batch add resolution records to domain namesDomain Name|Host Record|Type|Record Value|MX|TTL|RouteNS Route List#
| Parameter | Value |
|---|
| Default | 0 |
| Search Engines | seo |
| Search Engines-Google | seo-google |
| Search Engines-Baidu | seo-baidu |
| Search Engines-Bing | seo-bing |
| Asia | asia |
| Chinese Mainland | asia-cn |
| Non Chinese Mainland | non-cn |
| Singapore | asia-sg |
| Europe | eu |
| America | na-usa |
|Request URL#
|Request Method#
|Request Parameter#
| Field | Parameter | Type | Required | Description |
|---|
| APPID | appid | String | Yes | Application Client Id |
| Timestamp | gntime | String | Yes | The current UNIX timestamp |
| Signature | gntoken | String | Yes | Signature string. For details, please refer to the Signature Method page. |
| domain list | ymlb | String | Yes | Domain name resolution format, multiple resolutions separated by \n, [format: domain name | host record | record type | record value | MX value | TTL value] |
| is clear | isqk | Integer | No | clear existing records: 1=Yes, 0=No (default) |
| clear time | qksj | String | No | When isqk=1, clear the parsing records before this time, format: 2021-11-01 12:34:56 |
|Request Demo#
{
"appid": "1xxxxxxxxxxx",
"gntime": 1636499415,
"ymlb": "example.com|aa|A|127.0.0.1|0|600|seo",
"isqk": "1",
"qksj": "2021-11-01 12:34:56",
"gntoken": "2F3594A5B8210E0810D6A6C76695AC2B"
}
|Response Data#
| Field | Parameter | Type | Description |
|---|
| return code | code | Integer | 1:success, -1:Failed |
| return message | msg | String | return message |
| return data | data | Object | return data |
|Return Data#
| Field | Parameter | Type | Description |
|---|
| success set | data.ok | Array | - |
| error set | data.err | Array | - |
|Response Demo#
{
"code": 1,
"msg": "This operation was successful for 1 domain name and failed for 1 domain name.",
"data": {
"ok": [
{
"ym": "example.com|aa|A|127.0.0.1|0|600|seo",
"msg": "Successfully",
"jxid": 8xxxx7
}
],
"err": [
{
"ym": "example.com|aa|A|127.1.1.1|0|600|seo",
"msg": "Sorry,Existence of the same host value and the same record value."
}
]
}
}
Modified at 2026-05-08 08:10:54