Better Stack · Schema
MonitorUpdateRequest
Request body for updating an existing monitor (all fields optional).
IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats
Properties
| Name | Type | Description |
|---|---|---|
| url | string | New URL to monitor. |
| pronounceable_name | string | New human-readable name. |
| check_frequency | integer | New check interval in seconds. |
| verify_ssl | boolean | SSL verification setting. |
| boolean | Alert via email. | |
| sms | boolean | Alert via SMS. |
| call | boolean | Alert via phone call. |
| push | boolean | Alert via push notification. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-monitor-update-request-schema.json",
"title": "MonitorUpdateRequest",
"description": "Request body for updating an existing monitor (all fields optional).",
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "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": "integer",
"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
}
}
}