no_pending_renewal

HTTP 409

No pending renewal

Type URL

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

Detail message

This domain has no pending renewal proposal to respond to.

Example response

{
  "type": "https://developer.hostup.se/errors/no_pending_renewal",
  "title": "No pending renewal",
  "status": 409,
  "detail": "This domain has no pending renewal proposal to respond to.",
  "code": "no_pending_renewal",
  "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 === "no_pending_renewal") {
    // Handle: No pending renewal
    console.error(problem.detail);
  }
}