Test URL monitoring

Manually trigger a test check of a specific URL monitor to verify it's working correctly and your site is responding.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/notifications/url-monitors/{id}/test
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/notifications/url-monitors/46/test" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "monitor": {
      "id": 0,
      "name": "string",
      "url": "string"
    },
    "jobId": "string"
  }
}