Remove a DNSSEC record for a domain

Remove a specific DNSSEC record from a domain's DNS settings. A confirmation message and the ID of the removed record are returned. You may need to retrieve your domain ID from a list of your domains first.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

recordId string required Example

Base64-encoded recordId

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
DELETE https://cloud.hostup.se/api/domains/{domainId}/dnssec/{recordId}
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/domains/1167/dnssec/[base64]" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "recordId": "string"
  }
}