service_change_in_progress

HTTP 409

Change already in progress

Type URL

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

Possible detail messages

Another change is currently being applied to this server. Wait a minute and try again.
Another change is being processed for this VPS. Try again shortly.

Example response

{
  "type": "https://developer.hostup.se/errors/service_change_in_progress",
  "title": "Change already in progress",
  "status": 409,
  "detail": "Another change is currently being applied to this server. Wait a minute and try again.",
  "code": "service_change_in_progress",
  "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 === "service_change_in_progress") {
    // Handle: Change already in progress
    console.error(problem.detail);
  }
}