scheduled_change_in_progress

HTTP 409

Scheduled change in progress

Type URL

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

Detail message

A scheduled service change is already managing renewal for this VPS. Cancel or complete that change before changing auto-renewal.

Example response

{
  "type": "https://developer.hostup.se/errors/scheduled_change_in_progress",
  "title": "Scheduled change in progress",
  "status": 409,
  "detail": "A scheduled service change is already managing renewal for this VPS. Cancel or complete that change before changing auto-renewal.",
  "code": "scheduled_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 === "scheduled_change_in_progress") {
    // Handle: Scheduled change in progress
    console.error(problem.detail);
  }
}