Skip to main content

Create a glue record

This endpoint allows you to create a glue record

Endpoint

POST /registrar/v1/domains/{domain}/gluerecords

Parameters

NameLocationRequiredTypeDescription
domainPathYesStringA complete domain name
gluerecordBodyYesGluerecord-CreateThe glue record information

Response

Create glue record

Example Request

POST /registrar/v1/domains/example.com/gluerecords
Content-Type: application/json
{
"hostname": "ns1.example.com",
"ipv4": [
"1.1.1.1",
"1.0.0.1"
],
"ipv6": [
"2606:4700:4700::1111"
]
}

Example Response

{
"message": "Pending create"
}