Renewal invoice regeneration failed
https://developer.hostup.se/errors/upstream_renewal_regeneration_failed {
"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"
} /api/v2/shared-hosting/{accountId}/actions/upgrade List hosting upgrade options POST /api/v2/shared-hosting/{accountId}/actions/upgrade Change hosting plan POST /api/v2/vps/{id}/actions/config Change VPS resource options GET /api/v2/vps/{id}/actions/upgrade Get VPS upgrade options POST /api/v2/vps/{id}/actions/upgrade Change VPS plan 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);
}
}