Firmware update failed
https://developer.hostup.se/errors/firmware_update_failed {
"type": "https://developer.hostup.se/errors/firmware_update_failed",
"title": "Firmware update failed",
"status": 502,
"detail": "Firmware settings could not be updated. Please try again.",
"code": "firmware_update_failed",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "firmware_update_failed") {
// Handle: Firmware update failed
console.error(problem.detail);
}
}