Skip to main content

Update a glue record

This endpoint allows you to update a glue record

Endpoint

PUT /registrar/v1/domains/{domain}/gluerecords/{hostname}

Parameters

NameLocationRequiredTypeDescription
domainPathYesStringA complete domain name
hostnamePathYesStringA glue record hostname
gluerecordBodyYesGluerecord-UpdateThe glue record information

Response

Update glue record

Example Request

PUT /registrar/v1/domains/example.com/gluerecords/ns1.example.com
Content-Type: application/json
{
"ipv4": [
"1.1.1.3",
"1.0.0.3"
],
"ipv6": [
"2606:4700:4700::1113"
]
}

Example Response

{
"message": "Pending update",
"data": {
"old_ip": {
"ipv4": [
"1.1.1.1",
"1.0.0.1"
],
"ipv6": [
"2606:4700:4700::1111"
]
},
"new_ip": {
"ipv4": [
"1.1.1.3",
"1.0.0.3"
],
"ipv6": [
"2606:4700:4700::1113"
]
}
}
}