Set up and manage Dynamic DNS (DynDNS) for a specific domain. DynDNS is useful when your IP address changes regularly and you want your domain name to always point to the correct address. You need the domain ID, obtainable from endpoints like GET /api/client-domains.
domainId integer · min: 1 required Example Unique domain identifier
Accept Example Content-Type Example hostname string required record_type string · enum required A AAAA success boolean timestamp string requestId string data object https://cloud.hostup.se/api/domains/{domainId}/dyndns curl -X POST "https://cloud.hostup.se/api/domains/20461/dyndns" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"hostname": "string",
"record_type": "A"
}' {
"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"
},
"message": "string"
}
} {
"hostname": "string",
"record_type": "A"
}