Stop automatic DNSSEC activation for a domain

Manually opt out of automatic DNSSEC activation for a specific domain. This is useful if you need more control over DNSSEC settings or if the automatic process causes issues. The endpoint returns a unique ID to track the request status.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
action string · enum required
exclude
include

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/domains/{domainId}/dnssec-auto
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domains/13837/dnssec-auto" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "exclude"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "domain": "string",
    "dnssec_status": "string"
  }
}
Request Body
{
  "action": "exclude"
}