Edit record
- Print
- PDF
Edit record
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in Classic and VPC
Edit created record information for a specified domain.
Request
The following describes the request format for the endpoint. The request format is as follows:
Method | URI |
---|---|
PUT | /ncpdns/record/{domainId} |
Request headers
For headers common to all Record APIs, see Record API common headers.
Request path parameters
The following describes the parameters.
Field | Type | Required | Description |
---|---|---|---|
domainId | Integer | Required | Domain ID
|
Request body
See RecordUpdateRequest for the request body.
Request example
The following is a sample request.
curl --location --request PUT 'https://globaldns.apigw.ntruss.com/dns/v1/ncpdns/record/25***' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json' \
--data '[
{
"id": 27****,
"host": "record002",
"type": "A",
"content": "1.1.1.1",
"ttl": 400,
"aliasId": null,
"lbId": null
},
{
"id": 27****,
"host": "record003",
"type": "AAAA",
"content": "2001:0db8:85a3:0000:0000:8a2e:0370:7334",
"ttl": 300,
"aliasId": null,
"lbId": null
}
]'
Response
The following describes the response format.
Response status codes
For response status codes common to NAVER Cloud Platform, see Ncloud API response status codes.
Error code example
The following is a sample error code.
{
"result": "FAIL",
"error": {
"errorCode": "X00007",
"message": "This is an invalid record.",
"devMessage": "This is an invalid record.",
"moreInfo": {
"validationInfo": {
"rrsetValidationResponseList": [
{
"recordType": "A",
"field": "host",
"recordName": "www.example.com",
"msg": "The host and type you entered exist in other resource record that are duplicated. Change the applicable resource to add them.",
"index": 0
}
],
"domainId": 749
}
}
}
}
Was this article helpful?