Manage DNS Glue Records for your domains

Add or update DNS Glue Records for a specific domain. This is necessary when you want your domain to use custom nameservers registered under the same domain.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
hostname string required
ips array required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/domains/{domainId}/glue-records
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domains/11580/glue-records" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "hostname": "string",
    "ips": [
      "string"
    ]
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "hostname": "string",
    "ips": [
      "string"
    ],
    "message": "string"
  }
}
Request Body
{
  "hostname": "string",
  "ips": [
    "string"
  ]
}