Start or trigger a monitoring check for your services

Manually initiate a monitoring check for a specific service, such as a VPS or server. The endpoint returns a jobId that you use to track the status and results of the check via other API calls.

Headers

Accept Example
Content-Type Example

Body

required
application/json
action string required
vmIds array required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/monitoring/status
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/monitoring/status" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "string",
    "vmIds": [
      "string"
    ]
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "jobId": "string",
    "message": "string"
  }
}
Request Body
{
  "action": "string",
  "vmIds": [
    "string"
  ]
}