Redirect service unavailable
https://developer.hostup.se/errors/redirect_service_unavailable {
"type": "https://developer.hostup.se/errors/redirect_service_unavailable",
"title": "Redirect service unavailable",
"status": 502,
"detail": "Redirect management is not available right now.",
"code": "redirect_service_unavailable",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} This error can be returned with different status codes depending on context:
const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "redirect_service_unavailable") {
// Handle: Redirect service unavailable
console.error(problem.detail);
}
}