Remove a glue record for a domain

Remove a specific glue record associated with your domain. This is useful if a glue record was misconfigured or is no longer needed for correct traffic routing.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

hostname string required Example

Fully qualified domain name

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
DELETE https://cloud.hostup.se/api/domains/{domainId}/glue-records/{hostname}
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/domains/20249/glue-records/ns1.example43.com" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "hostname": "string",
    "message": "string"
  }
}