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