Check if VPS services have pending maintenance operations.

Quickly check if one or more of your VPS services have pending maintenance operations that require your attention. This is useful for proactively identifying potential service disruptions or necessary updates.

VPS Services VM

Context

Used in the dashboard

/

Headers

Accept Example
Content-Type Example

Body

required
application/json
vmIds array required · Example: ["12302"]

Responses

200
data object required
data.statuses array<object> required · Example: [{"id":"12302","hasPending":false}]
data.statuses[].hasPending boolean required · Example: false
data.statuses[].id string required · Example: 12302
requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

success boolean required · Example: true

True for successful responses.

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

POST https://cloud.hostup.se/api/vps/pending-maintenance
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/vps/pending-maintenance" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "vmIds": [
      "12302"
    ]
  }'
Response
{
  "success": true,
  "timestamp": "2026-02-10T00:00:00.000Z",
  "requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
  "data": {
    "statuses": [
      {
        "id": "12302",
        "hasPending": false
      }
    ]
  }
}
Request Body Example 1
{
  "vmIds": [
    "12302"
  ]
}