redirect_service_unavailable

HTTP 502

Redirect service unavailable

Type URL

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

Possible detail messages

Redirect management is not available right now.
The redirect rule could not be updated right now.
The redirect rule could not be deleted right now.

Example response

{
  "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"
}

HTTP status codes

This error can be returned with different status codes depending on context:

502 503

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 === "redirect_service_unavailable") {
    // Handle: Redirect service unavailable
    console.error(problem.detail);
  }
}