upstream_renewal_regeneration_failed

HTTP 502

Renewal invoice regeneration failed

Type URL

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

Possible detail messages

The plan change committed but no renewal invoice was generated; your service may stop billing. Contact support.
The configuration change committed but no renewal invoice was generated; your service may stop billing. Contact support.

Example response

{
  "type": "https://developer.hostup.se/errors/upstream_renewal_regeneration_failed",
  "title": "Renewal invoice regeneration failed",
  "status": 502,
  "detail": "The plan change committed but no renewal invoice was generated; your service may stop billing. Contact support.",
  "code": "upstream_renewal_regeneration_failed",
  "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 === "upstream_renewal_regeneration_failed") {
    // Handle: Renewal invoice regeneration failed
    console.error(problem.detail);
  }
}