Retrieve information about Glue Records associated with a specific domain. This information is crucial for ensuring correct DNS lookups for your domain, especially when using custom nameservers. The endpoint returns a unique requestId to track the call within the system.
domainId integer · min: 1 required Example Unique domain identifier
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/domains/{domainId}/glue-records curl -X GET "https://cloud.hostup.se/api/domains/13862/glue-records" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"domain": "string",
"glueRecords": [
{
"hostname": "string",
"ips": [
"string"
]
}
],
"count": 0
}
}