Control whether Dynamic DNS (DynDNS) is active for a specific domain and its configuration. This is useful if you need a domain to automatically point to a dynamic IP address, such as for accessing a home network.
domainId integer · min: 1 required Example Unique domain identifier
configId integer · min: 1 required Example Unique config identifier
Accept Example Content-Type Example enabled boolean required success boolean timestamp string requestId string data object https://cloud.hostup.se/api/domains/{domainId}/dyndns/{configId} curl -X PATCH "https://cloud.hostup.se/api/domains/20461/dyndns/53" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"enabled": true
}' {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"config": {
"id": 0,
"hostname": "string",
"record_type": "string",
"token": "string",
"last_ip": "string",
"last_update": "string",
"update_count": 0,
"enabled": true,
"created_at": "string",
"updated_at": "string"
},
"message": "string"
}
} {
"enabled": true
}