Get logs for dynamic DNS configuration

Retrieve logs related to dynamic DNS settings for a specific domain and configuration. The logs can provide insight into recent updates or any issues with DNS updates. The endpoint returns a `requestId` for subsequent calls and log entry IDs that can be referenced in other systems.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

configId integer · min: 1 required Example

Unique config identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/domains/{domainId}/dyndns/{configId}/logs
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/20461/dyndns/53/logs" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "logs": [
      {
        "id": 0,
        "old_ip": "string",
        "new_ip": "string",
        "source_ip": "string",
        "user_agent": "string",
        "status": "string",
        "error_message": "string",
        "created_at": "string"
      }
    ]
  }
}