Better Stack · JSON Structure

Better Stack Monitor Update Request Structure

Request body for updating an existing monitor (all fields optional).

Type: object Properties: 8
IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

MonitorUpdateRequest is a JSON Structure definition published by Better Stack, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

url pronounceable_name check_frequency verify_ssl email sms call push

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-structure/better-stack-monitor-update-request-structure.json",
  "name": "MonitorUpdateRequest",
  "description": "Request body for updating an existing monitor (all fields optional).",
  "type": "object",
  "properties": {
    "url": {
      "type": "uri",
      "description": "New URL to monitor.",
      "example": "https://example.com"
    },
    "pronounceable_name": {
      "type": "string",
      "description": "New human-readable name.",
      "example": "Updated API Monitor"
    },
    "check_frequency": {
      "type": "int32",
      "description": "New check interval in seconds.",
      "example": 300
    },
    "verify_ssl": {
      "type": "boolean",
      "description": "SSL verification setting.",
      "example": true
    },
    "email": {
      "type": "boolean",
      "description": "Alert via email.",
      "example": true
    },
    "sms": {
      "type": "boolean",
      "description": "Alert via SMS.",
      "example": false
    },
    "call": {
      "type": "boolean",
      "description": "Alert via phone call.",
      "example": false
    },
    "push": {
      "type": "boolean",
      "description": "Alert via push notification.",
      "example": true
    }
  }
}