renewal_pricing_unavailable

HTTP 502

Renewal pricing unavailable

Type URL

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

Detail message

The next renewal amount could not be verified for this service. Try again shortly.

Example response

{
  "type": "https://developer.hostup.se/errors/renewal_pricing_unavailable",
  "title": "Renewal pricing unavailable",
  "status": 502,
  "detail": "The next renewal amount could not be verified for this service. Try again shortly.",
  "code": "renewal_pricing_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 === "renewal_pricing_unavailable") {
    // Handle: Renewal pricing unavailable
    console.error(problem.detail);
  }
}