Update a glue record
This endpoint allows you to update a glue record
Endpoint
PUT /registrar/v1/domains/{domain}/gluerecords/{hostname}
Parameters
| Name | Location | Required | Type | Description |
|---|---|---|---|---|
| domain | Path | Yes | String | A complete domain name |
| hostname | Path | Yes | String | A glue record hostname |
| gluerecord | Body | Yes | Gluerecord-Update | The 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"
]
}
}
}