Retrieve the current configuration for Dynamic DNS (DynDNS) for a specific domain. You need the domain ID, which you can get from endpoints like GET /api/client-domains.
domainId integer · min: 1 required Example Unique domain identifier
Accept Example Content-Type Example success boolean timestamp string requestId string data object error string message string retryAfter string requestId string https://cloud.hostup.se/api/domains/{domainId}/dyndns curl -X GET "https://cloud.hostup.se/api/domains/737/dyndns" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"configs": [
{
"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"
}
]
}
}