auto_renew_unavailable

HTTP 409

Auto-renew unavailable

Type URL

https://developer.hostup.se/errors/auto_renew_unavailable

Possible detail messages

Auto-renewal can only be enabled for active domains. The batch was rejected.
Auto-renewal can be enabled once the domain is active.

Example response

{
  "type": "https://developer.hostup.se/errors/auto_renew_unavailable",
  "title": "Auto-renew unavailable",
  "status": 409,
  "detail": "Auto-renewal can only be enabled for active domains. The batch was rejected.",
  "code": "auto_renew_unavailable",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "auto_renew_unavailable") {
    // Handle: Auto-renew unavailable
    console.error(problem.detail);
  }
}