Get details for a specific notification service

Retrieve detailed information about a specific notification service, such as configured thresholds and integration settings for various messaging services. The ID provided is unique to each notification service and specifies which service to retrieve.

Path Parameters

id string required Example

id parameter

Headers

Accept Example
Content-Type Example

Responses

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