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.
domainId integer · min: 1 required Example Unique domain identifier
configId integer · min: 1 required Example Unique config identifier
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/domains/{domainId}/dyndns/{configId}/logs 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" {
"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"
}
]
}
}