Get Dynamic DNS configuration for a domain

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.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
429
error string
message string
retryAfter string
requestId string
GET https://cloud.hostup.se/api/domains/{domainId}/dyndns
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/737/dyndns" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "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"
      }
    ]
  }
}