List managed services for customer accounts

Retrieve an overview of all managed services associated with a customer account. This endpoint returns a unique ID usable in subsequent API calls to get detailed information about specific services. Use this endpoint for a general overview of your active services.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/monitoring/managed-services
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/monitoring/managed-services" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "services": [
      "string"
    ],
    "count": 0
  }
}